Package MAKBPInterpreter.agents
Interface Action
-
public interface Action
Represents an action for an agent.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
performs(java.lang.Object... objects)
Performs custom action.
-
-
-
Method Detail
-
performs
java.lang.Object performs(java.lang.Object... objects) throws java.lang.Exception
Performs custom action.- Parameters:
objects
- any number or type of object arguments- Returns:
- result object
- Throws:
java.lang.Exception
- thrown when receive illegal arguments, objects cannot be processed, etc
-
-