Modifier and Type | Method and Description |
---|---|
Objective |
Objective.cloneObject()
Creates and returns a deep copy of this
Objective object. |
Objective |
ListOfObjectives.createObjective()
Creates a new
Objective object, adds it to the
ListOfObjectives and returns the Objective object created. |
Objective |
FbcModelPlugin.createObjective()
Creates a new
Objective object, adds it to this FbcModelPlugin 's
ListOfObjectives and returns the Objective object created. |
Objective |
ListOfObjectives.get(long n)
Get an
Objective from the ListOfObjectives . |
Objective |
ListOfObjectives.get(java.lang.String sid)
Get an
Objective from the ListOfObjectives based on its identifier. |
Objective |
FbcModelPlugin.getActiveObjective()
Returns the current active objective.
|
Objective |
FbcModelPlugin.getObjective(long n)
Get an
Objective from the ListOfObjectives . |
Objective |
FbcModelPlugin.getObjective(java.lang.String sid)
Get an
Objective from the ListOfObjectives
based on its identifier. |
Objective |
ListOfObjectives.remove(long n)
Removes the nth
Objective from this ListOfObjectives
and returns a pointer to it. |
Objective |
ListOfObjectives.remove(java.lang.String sid)
Removes the
Objective from this ListOfObjectives with the given identifier
and returns a pointer to it. |
Objective |
FbcModelPlugin.removeObjective(long n)
|
Objective |
FbcModelPlugin.removeObjective(java.lang.String sid)
Removes the
Objective with the given identifier from the ListOfObjectives within this FbcModelPlugin
and returns a pointer to it. |
Modifier and Type | Method and Description |
---|---|
int |
ListOfObjectives.addObjective(Objective o)
Adds a copy the given
Objective to this ListOfObjectives . |
int |
FbcModelPlugin.addObjective(Objective o)
Adds a copy the given
Objective to this FbcModelPlugin . |
Constructor and Description |
---|
Objective(Objective orig)
Copy constructor for
Objective . |