Modifier and Type | Method and Description |
---|---|
SpeciesReference |
SpeciesReference.cloneObject()
Creates and returns a deep copy of this
SpeciesReference object. |
SpeciesReference |
Reaction.createProduct()
Creates a new
SpeciesReference , adds it to this Reaction 's list of
products, and returns it. |
SpeciesReference |
Model.createProduct()
Creates a new
SpeciesReference object for a product inside the last
Reaction object in this Model , and returns a pointer to it. |
SpeciesReference |
Reaction.createReactant()
Creates a new
SpeciesReference , adds it to this Reaction 's list of
reactants, and returns it. |
SpeciesReference |
Model.createReactant()
Creates a new
SpeciesReference object for a reactant inside the last
Reaction object in this Model , and returns a pointer to it. |
SpeciesReference |
Reaction.getProduct(long n)
Returns the nth product species (as a
SpeciesReference object) in
the list of products in this Reaction . |
SpeciesReference |
Reaction.getProduct(String species)
Returns the product species (as a
SpeciesReference object) having
a specific identifier in this Reaction . |
SpeciesReference |
Reaction.getReactant(long n)
Returns the nth reactant species (as a
SpeciesReference object) in
the list of reactants in this Reaction . |
SpeciesReference |
Reaction.getReactant(String species)
Returns the reactant species (as a
SpeciesReference object) having
a specific identifier in this Reaction . |
SpeciesReference |
Model.getSpeciesReference(String sid)
Get a
SpeciesReference object based on its identifier. |
SpeciesReference |
Reaction.removeProduct(long n)
Removes the nth product species (SpeciesReference object) in the list of
products in this
Reaction and returns a pointer to it. |
SpeciesReference |
Reaction.removeProduct(String species)
Removes the product species (SpeciesReference object) having the given
'species' attribute in this
Reaction and returns a pointer to it. |
SpeciesReference |
Reaction.removeReactant(long n)
Removes the nth reactant species (SpeciesReference object) in the list of
reactants in this
Reaction and returns a pointer to it. |
SpeciesReference |
Reaction.removeReactant(String species)
Removes the reactant species (SpeciesReference object) having the given
'species' attribute in this
Reaction and returns a pointer to it. |
Modifier and Type | Method and Description |
---|---|
int |
Reaction.addProduct(SpeciesReference sr)
Adds a given
SpeciesReference object as a product in this Reaction . |
int |
Reaction.addReactant(SpeciesReference sr)
Adds a given
SpeciesReference object as a reactant in this Reaction . |
Constructor and Description |
---|
SpeciesReference(SpeciesReference orig)
Copy constructor; creates a copy of this
SpeciesReference . |