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 |
Model.createParameter()
|
Parameter |
KineticLaw.createParameter()
Creates a new
Parameter object, adds it to this KineticLaw 's list of
local parameters, and returns the Parameter object created. |
Parameter |
ListOfParameters.get(long n)
|
Parameter |
ListOfParameters.get(String sid)
Returns the first
Parameter object matching the given identifier. |
Parameter |
Model.getParameter(long n)
|
Parameter |
KineticLaw.getParameter(long n)
Returns the nth
Parameter object in the list of local parameters in
this KineticLaw instance. |
Parameter |
Model.getParameter(String sid)
Get a
Parameter object based on its identifier. |
Parameter |
KineticLaw.getParameter(String sid)
Returns a local parameter 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(String sid)
Removes the first
Parameter object in this ListOfParameters
matching the given identifier, and returns a pointer to it. |
Parameter |
Model.removeParameter(long n)
|
Parameter |
KineticLaw.removeParameter(long n)
Removes the nth
Parameter object in the list of local parameters
in this KineticLaw instance and returns a pointer to it. |
Parameter |
Model.removeParameter(String sid)
|
Parameter |
KineticLaw.removeParameter(String sid)
Removes a
Parameter 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 |
Model.addParameter(Parameter p)
|
int |
KineticLaw.addParameter(Parameter p)
Adds a copy of the given
Parameter object to the list of local
parameters in this KineticLaw . |
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 . |