Package jade.wrapper
Interface State
-
- All Known Implementing Classes:
AgentState,PlatformState,StateBase
public interface StateDefines the interface to all concrete implementations of state representation.
NOT available in MIDP- Author:
- Kevin A. Minder, David Bell, Dick Cowan : Hewlett-Packard
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCode()Return the integer code assigned to the state.StringgetName()Returns the name of the state.StringtoString()Return string representation of state description and its code.
-
-
-
Method Detail
-
getName
String getName()
Returns the name of the state. This method will never return null.- Returns:
- The descriptive name of the state.
-
getCode
int getCode()
Return the integer code assigned to the state.- Returns:
- The integer code assigned to the state.
-
-