Modifier and Type | Method and Description |
---|---|
EventAssignment |
EventAssignment.cloneObject()
Creates and returns a deep copy of this
EventAssignment object. |
EventAssignment |
Event.createEventAssignment()
Creates a new, empty
EventAssignment , adds it to this Event 's list of
event assignments and returns the EventAssignment . |
EventAssignment |
Model.createEventAssignment()
Creates a new
EventAssignment inside the last Event object created in
this Model , and returns a pointer to it. |
EventAssignment |
ListOfEventAssignments.get(long n)
Get a
EventAssignment from the ListOfEventAssignments . |
EventAssignment |
ListOfEventAssignments.get(java.lang.String sid)
Get a
EventAssignment from the ListOfEventAssignments
based on its identifier. |
EventAssignment |
Event.getEventAssignment(long n)
Return a specific
EventAssignment object of this Event . |
EventAssignment |
Event.getEventAssignment(java.lang.String variable)
Return the event assignment indicated by the given
variable . |
EventAssignment |
ListOfEventAssignments.remove(long n)
Removes the nth item from this
ListOfEventAssignments items and returns
a pointer to it. |
EventAssignment |
ListOfEventAssignments.remove(java.lang.String sid)
Removes item in this
ListOfEventAssignments items with the given
identifier. |
EventAssignment |
Event.removeEventAssignment(long n)
Removes the nth
EventAssignment object from this Event object and
returns a pointer to it. |
EventAssignment |
Event.removeEventAssignment(java.lang.String variable)
Removes the
EventAssignment object with the given 'variable' attribute
from this Event object and returns a pointer to it. |
Modifier and Type | Method and Description |
---|---|
int |
Event.addEventAssignment(EventAssignment ea)
Appends a copy of the given
EventAssignment to this Event . |
Constructor and Description |
---|
EventAssignment(EventAssignment orig)
Copy constructor; creates a copy of this
EventAssignment . |