Magentix2
2.1.1
|
Public Member Functions | |
BeginState (String n) | |
void | setMethod (BeginStateMethod method) |
BeginStateMethod | getMethod () |
This class represents a begin state during an interaction protocol. When a conversation reaches this state it executes the state's method.
Definition at line 11 of file BeginState.java.
es.upv.dsic.gti_ia.cAgents.BeginState.BeginState | ( | String | n | ) |
Create a new begin state
name | of the state |
Definition at line 19 of file BeginState.java.
Returns the method assigned to this state by the setMethod() function
Definition at line 36 of file BeginState.java.
{
return Method;
}
void es.upv.dsic.gti_ia.cAgents.BeginState.setMethod | ( | BeginStateMethod | method | ) |
Set the method that will be executed when a conversation reaches this state
The | method of this state |
Definition at line 28 of file BeginState.java.
{ Method = method; }