View Javadoc

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