Modifier and Type | Method and Description |
---|---|
Compartment |
Compartment.cloneObject()
Creates and returns a deep copy of this
Compartment object. |
Compartment |
Model.createCompartment()
Creates a new
Compartment inside this Model and returns it. |
Compartment |
ListOfCompartments.get(long n)
Get a
Compartment object from the ListOfCompartments . |
Compartment |
ListOfCompartments.get(java.lang.String sid)
Get a
Compartment object from the ListOfCompartments
based on its identifier. |
Compartment |
Model.getCompartment(long n)
Get the nth
Compartment object in this Model . |
Compartment |
Model.getCompartment(java.lang.String sid)
Get a
Compartment object based on its identifier. |
Compartment |
ListOfCompartments.remove(long n)
Removes the nth item from this
ListOfCompartments items and returns a pointer to
it. |
Compartment |
ListOfCompartments.remove(java.lang.String sid)
Removes item in this
ListOfCompartments items with the given identifier. |
Compartment |
Model.removeCompartment(long n)
Removes the nth
Compartment object from this Model object and
returns a pointer to it. |
Compartment |
Model.removeCompartment(java.lang.String sid)
Removes the
Compartment object with the given identifier from this Model
object and returns a pointer to it. |
Modifier and Type | Method and Description |
---|---|
int |
Model.addCompartment(Compartment c)
Adds a copy of the given
Compartment object to this Model . |
Constructor and Description |
---|
Compartment(Compartment orig)
Copy constructor.
|