View Javadoc

1   /*
2    * Created on Dec 18, 2003
3    * 
4    * Copyright (c) 2003, 2004 Delft University of Technology Jaffalaan 5, 2628 BX
5    * Delft, the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
9    */
10  
11  package nl.tudelft.simulation.traffic.controlpoint.real;
12  
13  import nl.tudelft.simulation.event.EventProducerInterface;
14  
15  /***
16   * This interface defines a control measure that can make a vehicle stop.
17   */
18  public interface StopSignInterface extends EventProducerInterface,
19          VisibleControlPointInterface, Changeable
20  {
21      /***
22       * vehicle may continue
23       */
24      public static final String CONTINUE = "CONT";
25  
26      /***
27       * vehicle must stop
28       */
29      public static final String STOP = "STOP";
30  }