Code Search for Developers
 
 
  

NonJavaAnalyzer.java from Oscill8 at Krugle


Show NonJavaAnalyzer.java syntax highlighted

/******************************************************************************
 * 
 *   File: $Id: NonJavaAnalyzer.java,v 1.1 2005/05/02 03:37:49 emeryconrad Exp $
 *   Author: Emery Conrad
 * 
 *   Descritption:
 *     ...
 * 
 *   Oscill8 Dynamical Systems Toolset
 *   Copyright (C) 2005, Emery Conrad
 *
 *   This library is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU Lesser General Public
 *   License as published by the Free Software Foundation; either
 *   version 2.1 of the License, or (at your option) any later version.
 *
 *   This library is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *   Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public
 *   License along with this library; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *****************************************************************************/

package com.oscill8.o8biospice;

import org.biospice.analyzer.Analyzer;
import org.biospice.analyzer.AnalysisException;
import org.biospice.analyzer.AnalyzerFactory;
import org.biospice.analyzer.ParameterDeclarationGroup;
import org.biospice.analyzer.ParameterValueGroup;

public class NonJavaAnalyzer extends AnalyzerFactory implements Analyzer 
{
	public ParameterValueGroup analyze(ParameterValueGroup inputs) throws AnalysisException
	{
		//this returns an empty set of data.  just a placeholder for now.
		return ParameterValueGroup.EMPTY;
	}
  
  


	/******************************************************************
	 * 
	 *  factory implementation
	 *
	 *****************************************************************/

	
	public Analyzer getAnalyzer() 
	{
		return new NonJavaAnalyzer();
	}
    
	public String getDisplayName() 
	{
		return "Non Java Analyzer";
	}
    
	public String getName() 
	{
		return "com.oscill8.o8biospice.NonJavaAnalyzer";
	}
    
	public String getDescription() 
	{
		return "A wrapper for non-java analyzers";
	}
    
	public ParameterDeclarationGroup getInputs() 
	{
		return ParameterDeclarationGroup.EMPTY;
	}
    
	public ParameterDeclarationGroup getOutputs() 
	{
		return ParameterDeclarationGroup.EMPTY;
	}
    
	public String getReferences() 
	{
		return "http://oscill8.sourceforge.net";
	}    
}





See more files for this project here

Oscill8

Oscill8 is a suite of tools for analyzing dynamical systems which concentrates on understanding how the dynamical behavior depends on the parameters using bifurcation theory and reaction network theory.

Project homepage: http://sourceforge.net/projects/oscill8
Programming language(s): C,C#,C++
License: other

  NonJavaAnalyzer.java
  OneParameterBD.java
  Plotter.java
  Simulator.java