Modifier and Type | Method and Description |
---|---|
LocalParameter |
LocalParameter.cloneObject()
Creates and returns a deep copy of this
LocalParameter object. |
LocalParameter |
Model.createKineticLawLocalParameter()
Creates a new
LocalParameter inside the KineticLaw object of the last
Reaction created inside this Model , and returns a pointer to it. |
LocalParameter |
KineticLaw.createLocalParameter()
Creates a new
LocalParameter object, adds it to this KineticLaw 's list
of local parameters, and returns the LocalParameter object created. |
LocalParameter |
ListOfLocalParameters.get(long n)
|
LocalParameter |
ListOfLocalParameters.get(String sid)
Returns the first
LocalParameter object matching the given identifier. |
LocalParameter |
KineticLaw.getLocalParameter(long n)
Returns the nth
LocalParameter object in the list of local parameters in
this KineticLaw instance. |
LocalParameter |
KineticLaw.getLocalParameter(String sid)
Returns a local parameter based on its identifier.
|
LocalParameter |
ListOfLocalParameters.remove(long n)
Removes the nth item from this
ListOfLocalParameters , and returns a
pointer to it. |
LocalParameter |
ListOfLocalParameters.remove(String sid)
Removes the first
LocalParameter object in this ListOfLocalParameters
matching the given identifier, and returns a pointer to it. |
LocalParameter |
KineticLaw.removeLocalParameter(long n)
Removes the nth
LocalParameter object in the list of local parameters
in this KineticLaw instance and returns a pointer to it. |
LocalParameter |
KineticLaw.removeLocalParameter(String sid)
Removes a
LocalParameter object with the given identifier in the list of
local parameters in this KineticLaw instance and returns a pointer to it. |
Modifier and Type | Method and Description |
---|---|
int |
KineticLaw.addLocalParameter(LocalParameter p)
Adds a copy of the given
LocalParameter object to the list of local
parameters in this KineticLaw . |
Constructor and Description |
---|
LocalParameter(LocalParameter orig)
Copy constructor; creates a copy of a given
LocalParameter object. |