org.concord.biologica.engine
Class BioEngine

java.lang.Object
  |
  +--org.concord.biologica.engine.BioEngine
All Implemented Interfaces:
java.io.Serializable

public class BioEngine
extends java.lang.Object
implements java.io.Serializable

This class represents the Java Bean representing all of the BioScope engine. A user of this bean would place it in a beanbox and then use the properties, events and methods of this bean to manipulate the BioScope engine.

In truth, it seems difficult to really do much with the BioScope engine via this Bean, but perhaps it'll have some value in the future that I don't see now.

Version:
$Revision: 1.1.1.1 $ $Date: 2001/04/28 00:39:11 $
Author:
$Author: ed $
See Also:
Serialized Form

Field Summary
protected  java.lang.String name
          The name of this object.
 
Constructor Summary
BioEngine()
          Creates a bioengine, the main object for the BioScope engine.
 
Method Summary
 void addPropertyChangeListener(java.beans.PropertyChangeListener aListener)
          Add a property change listener for all non-vector properties.
 java.lang.String getName()
          Returns the name of the bioengine.
 void removePropertyChangeListener(java.beans.PropertyChangeListener aListener)
          Remove a property change listener for all non-vector properties.
 void setName(java.lang.String aName)
          Sets the name of the bioengine.
 java.lang.String toString()
          Returns a string describing this object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

name

protected java.lang.String name
The name of this object. May be null.
Constructor Detail

BioEngine

public BioEngine()
Creates a bioengine, the main object for the BioScope engine.
Method Detail

setName

public void setName(java.lang.String aName)
Sets the name of the bioengine.
Parameters:
aName - String - new name of bioengine, may be null

getName

public java.lang.String getName()
Returns the name of the bioengine.
Returns:
String - name of engine, may be null

toString

public java.lang.String toString()
Returns a string describing this object.
Overrides:
toString in class java.lang.Object
Returns:
String - String representation of this object

addPropertyChangeListener

public void addPropertyChangeListener(java.beans.PropertyChangeListener aListener)
Add a property change listener for all non-vector properties.
Parameters:
aListener - PropertyChangeListener - a new listener

removePropertyChangeListener

public void removePropertyChangeListener(java.beans.PropertyChangeListener aListener)
Remove a property change listener for all non-vector properties.
Parameters:
aListener - PropertyChangeListener - a listener to remove