Method Summary |
|
public boolean | add(Action action) Add an action to this list. |
public boolean | addAll(Action[] actions) Add a collection of actions to this list. |
public boolean | contains(Action action) Tests if the action is in this list. |
public void | execute(RequestContext context) Executes the actions contained within this action list. |
public Action | get(int index) Returns the action in this list at the provided index. |
public AnnotatedAction | getAnnotated(int index) Returns the action in this list at the provided index, exposing it as an
annotated action. |
public Iterator | iterator() Returns an iterator over this action list. |
public boolean | remove(Action action) Remove the action instance from this list. |
public int | size() Returns the size of this action list. |
public AnnotatedAction[] | toAnnotatedArray() Returns the list of actions in this list as a typed annotated action
array. |
public Action[] | toArray() Convert this list to a typed action array. |
public String | toString() |