astex.generic
Interface GenericInterface

All Known Implementing Classes:
Atom, Bond, Distance, Generic, GenericEvent, Molecule, Monitor, Residue, Ring

public interface GenericInterface


Field Summary
static java.lang.String Name
          Some defined property constants.
 
Method Summary
 void addChild(GenericInterface child)
          Add a child.
 void addListener(GenericEventInterface geh)
          Add a listener.
 void addParent(GenericInterface parent)
          Add a parent.
 java.lang.Object get(java.lang.Object key, java.lang.Object def)
          Get Object representing key.
 java.util.Enumeration getChildren(java.lang.Object type)
          Get an enumeration of our children.
 java.lang.Object getClassname()
          Get our class description.
 java.util.Enumeration getParents(java.lang.Object type)
          Get an Enumeration of our parents.
 java.util.Enumeration getProperties()
          Return an enumeration of our properties.
 void removeChild(GenericInterface child)
          Remove a child.
 void removeListener(GenericEventInterface geh)
          Remove a listener.
 void removeParent(GenericInterface parent)
          Remove a parent.
 java.lang.Object set(java.lang.Object key, java.lang.Object value)
          Set an object value.
 void setClassname(java.lang.String classname)
          Set our classname.
 

Field Detail

Name

static final java.lang.String Name
Some defined property constants.

See Also:
Constant Field Values
Method Detail

getProperties

java.util.Enumeration getProperties()
Return an enumeration of our properties.


get

java.lang.Object get(java.lang.Object key,
                     java.lang.Object def)
Get Object representing key.


set

java.lang.Object set(java.lang.Object key,
                     java.lang.Object value)
Set an object value.


getClassname

java.lang.Object getClassname()
Get our class description.


setClassname

void setClassname(java.lang.String classname)
Set our classname.


getParents

java.util.Enumeration getParents(java.lang.Object type)
Get an Enumeration of our parents.


addParent

void addParent(GenericInterface parent)
Add a parent.


removeParent

void removeParent(GenericInterface parent)
Remove a parent.


getChildren

java.util.Enumeration getChildren(java.lang.Object type)
Get an enumeration of our children.


addChild

void addChild(GenericInterface child)
Add a child.


removeChild

void removeChild(GenericInterface child)
Remove a child.


addListener

void addListener(GenericEventInterface geh)
Add a listener.


removeListener

void removeListener(GenericEventInterface geh)
Remove a listener.