1
2
3
4
5
6
7
8
9
10
11 package nl.tudelft.simulation.traffic.controlpoint.virtual;
12
13 import nl.tudelft.simulation.event.EventProducerInterface;
14 import nl.tudelft.simulation.traffic.controlpoint.ControlPointInterface;
15
16
17
18
19
20
21
22 /***
23 * The VirtualControlPointInterface defines the interface of
24 * virtualControlPoints. The classes that implement this interface represent
25 * points on the infrastructure that are equivalent to a control point, but that
26 * aren't directly associated to a real world object. <br>
27 * The instances of these classes are often used for visibility issues or
28 * statistics gathering. An example is the showInterface. <br>
29 * <br>
30 *
31 */
32 public interface VirtualControlPointInterface extends ControlPointInterface,
33 EventProducerInterface
34 {
35
36 }