| Interface | Description |
|---|---|
| Environment |
This interface models an environment for agents, i.e.
|
| Executable |
An executable is an action an agent performs within an environment.
|
| Perceivable |
A perceivable object is some event occuring in an environment and perceivable
by an agent.
|
| Protocol |
A protocol gives instructions in which order agents have to be asked
for actions in a multi-agent system.
|
| ProtocolListener |
A protocol listener listens on a protocol and is notified whenever an action is executed.
|
| Class | Description |
|---|---|
| AbstractProtocol |
A protocol gives instructions in which order agents have to be asked
for actions in a multi-agent system.
|
| ActionEvent |
An action event encapsulates a multi agent system, an agent in this system, and
an action (which was performed by the agent).
|
| Agent |
An agent is a possibly proactive entity situated in some environment.
|
| DummyAgent |
A dummy agent is an agent that cannot act.
|
| MultiAgentSystem<T extends Agent> |
A multi-agent system is a collection of agents with some environment.
|
| RigidProtocol |
This class models a rigid protocol, i.e.
|
| RoundRobinProtocol |
This class models a round robin protocol for multi-agent systems.
|
| SynchronousProtocol |
This class models a synchronous protocol for multi-agent systems.
|
| Exception | Description |
|---|---|
| ProtocolTerminatedException |
A ProtocolTerminatedException is thrown when
a protocol is asked to perform a step but has already terminated.
|