1
2
3
4
5
6
7
8
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 }