Modifier and Type | Class and Description |
---|---|
class |
LocalParameter
A parameter inside an SBML reaction definition.
|
Modifier and Type | Method and Description |
---|---|
Parameter |
Parameter.cloneObject()
Creates and returns a deep copy of this
Parameter object. |
Parameter |
Model.createKineticLawParameter()
Creates a new local
Parameter inside the KineticLaw object of the last
Reaction created inside this Model , and returns a pointer to it. |
Parameter |
KineticLaw.createParameter()
Creates a new
Parameter object, adds it to this KineticLaw 's list of
parameters, and returns the Parameter object created. |
Parameter |
Model.createParameter()
|
Parameter |
ListOfParameters.get(long n)
|
Parameter |
ListOfParameters.get(java.lang.String sid)
Returns the first
Parameter object matching the given identifier. |
Parameter |
KineticLaw.getParameter(long n)
Returns the nth
Parameter object in the list of parameters in
this KineticLaw instance. |
Parameter |
Model.getParameter(long n)
|
Parameter |
KineticLaw.getParameter(java.lang.String sid)
Returns a parameter based on its identifier.
|
Parameter |
Model.getParameter(java.lang.String sid)
Get a
Parameter object based on its identifier. |
Parameter |
ListOfParameters.remove(long n)
Removes the nth item from this
ListOfParameters , and returns a pointer
to it. |
Parameter |
ListOfParameters.remove(java.lang.String sid)
Removes the first
Parameter object in this ListOfParameters
matching the given identifier, and returns a pointer to it. |
Parameter |
KineticLaw.removeParameter(long n)
Removes the nth
Parameter object in the list of parameters
in this KineticLaw instance and returns a pointer to it. |
Parameter |
Model.removeParameter(long n)
|
Parameter |
KineticLaw.removeParameter(java.lang.String sid)
Removes a
Parameter object with the given identifier in the list of
parameters in this KineticLaw instance and returns a pointer to it. |
Parameter |
Model.removeParameter(java.lang.String sid)
|
Modifier and Type | Method and Description |
---|---|
int |
KineticLaw.addParameter(Parameter p)
Adds a copy of the given
Parameter object to the list of local
parameters in this KineticLaw . |
int |
Model.addParameter(Parameter p)
|
Constructor and Description |
---|
LocalParameter(Parameter orig)
Copy constructor; creates a
LocalParameter object by copying
the attributes of a given Parameter object. |
Parameter(Parameter orig)
Copy constructor; creates a copy of a
Parameter . |