View Javadoc

1   package cz.cuni.amis.pogamut.usar2004.agent.module.state;
2   
3   import cz.cuni.amis.pogamut.usar2004.agent.module.datatypes.VehicleType;
4   
5   /**
6    * State message representative for Aerial vehicle.
7    *
8    * @author vejmanm
9    */
10  public class StateAerial extends SuperState
11  {
12      public static final VehicleType type = VehicleType.AERIAL_VEHICLE;
13  
14      /**
15       * Ctor. State type describes particular subject about which we want to know
16       * about. It is used to distinguish incoming message from the server.
17       */
18      public StateAerial()
19      {
20          super(type);
21      }
22  }