1 package cz.cuni.amis.pogamut.base.communication.messages;
2
3 /**
4 * Command is a wrapper for agent-effector which contains description of the command that the agent should carry out
5 * inside virtual world.
6 *
7 * @author Jimmy
8 */
9 public abstract class CommandMessage {
10
11 public String toString() {
12 return "CommandMessage[" + getClass().getSimpleName() + "]";
13 }
14
15 }