Modifier and Type | Method and Description |
---|---|
Input |
Input.cloneObject()
Creates and returns a deep copy of this
Input object. |
Input |
Transition.createInput()
Creates a new
Input object, adds it to this Transitions
ListOfInputs and returns the Input object created. |
Input |
ListOfInputs.get(long n)
Get a
Input from the ListOfInputs . |
Input |
ListOfInputs.get(String sid)
Get a
Input from the ListOfInputs
based on its identifier. |
Input |
ListOfInputs.getBySpecies(String sid)
Get a
Input from the ListOfInputs
based on the qualitativeSpecies to which it refers. |
Input |
Transition.getInput(long n)
Get a
Input from the ListOfInputs . |
Input |
Transition.getInput(String sid)
Get a
Input from the ListOfInputs
based on its identifier. |
Input |
Transition.getInputBySpecies(String sid)
Get a
Input from the ListOfInputs
based on its qualitativeSpecies attribute. |
Input |
ListOfInputs.remove(long n)
Removes the nth
Input from this ListOfInputs
and returns a pointer to it. |
Input |
ListOfInputs.remove(String sid)
Removes the
Input from this ListOfInputs with the given identifier
and returns a pointer to it. |
Input |
Transition.removeInput(long n)
|
Input |
Transition.removeInput(String sid)
Removes the
Input with the given identifier from the ListOfInputs within this Transition
and returns a pointer to it. |
Modifier and Type | Method and Description |
---|---|
int |
Transition.addInput(Input i)
Adds a copy the given 'Input' to this
Transition . |
Constructor and Description |
---|
Input(Input orig)
Copy constructor for
Input . |