Magentix2
2.1.1
|
Public Member Functions | |
ActionState (String n) | |
void | setMethod (ActionStateMethod method) |
ActionStateMethod | getMethod () |
This class represents an action state during an interaction protocol. When a conversation reaches this state it executes the state's method.
Definition at line 9 of file ActionState.java.
Create a new action state
name | of the state |
Definition at line 17 of file ActionState.java.
Returns the method assigned to this state by the setMethod() function
Definition at line 34 of file ActionState.java.
{
return Method;
}
Set the method that will be executed when a conversation reaches this state
The | method of this state |
Definition at line 26 of file ActionState.java.
{ Method = method; }