public abstract class Action extends Object
| Constructor and Description |
|---|
Action() |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
getActionType()
Returns the type of action.
|
abstract String |
getActionTypeDesc()
Returns the action type description
|
Action |
getNextAction()
Returns the next Action to be performed after this Action.
|
void |
setNextAction(Action next)
Sets the next Action to be performed after this Action.
|
public abstract String getActionType()
public abstract String getActionTypeDesc()
public Action getNextAction()
public void setNextAction(Action next)
next - the next Action to be performed after this Action.