View Javadoc

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