Package | Description |
---|---|
casa.actions.rf3 |
Modifier and Type | Class and Description |
---|---|
class |
AbstractAngelicChoice<T extends Action> |
class |
ActionChoice_One<T extends Action> |
class |
ActionChoice_OneOrMore<T extends Action> |
class |
ActionChoice_ZeroOrMore<T extends Action> |
class |
ActionChoice_ZeroOrOne<T extends Action> |
class |
CompositeAction<T extends Action>
A composite action is a
Collection of zero or more actions. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractAction |
class |
AbstractAngelicChoice<T extends Action> |
class |
ActionChoice_One<T extends Action> |
class |
ActionChoice_OneOrMore<T extends Action> |
class |
ActionChoice_ZeroOrMore<T extends Action> |
class |
ActionChoice_ZeroOrOne<T extends Action> |
class |
CompositeAction<T extends Action>
A composite action is a
Collection of zero or more actions. |
private class |
CompositeActionTest.TestAction |
class |
Conditional
An action similar to a switch statement.
|
class |
Loop |
class |
While |
Modifier and Type | Field and Description |
---|---|
(package private) Action |
Loop.body |
Modifier and Type | Method and Description |
---|---|
int |
CompositeAction.compareTo(Action theAction) |
int |
AbstractAction.compareTo(Action theAction)
Compares based on:
the
String.compareTo(String) of AbstractAction.getName()
the compareTo() of the sorted members of the preconditions
the compareTo() of the sorted members of the postconditions
|
Constructor and Description |
---|
CompositeAction(String theName,
T... theActions) |
CompositeAction(T... theActions) |
Loop(Action body) |
Loop(String theName,
Action body) |
While(Condition loopCondition,
Action body) |
While(String theName,
Condition loopCondition,
Action body) |