View Javadoc

1   /*
2    * Created on Dec 4, 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.virtual;
12  
13  import nl.tudelft.simulation.event.EventProducerInterface;
14  import nl.tudelft.simulation.traffic.controlpoint.ControlPointInterface;
15  
16  /*
17   * Created on Dec 18, 2003
18   * 
19   * To change the template for this generated file go to
20   * Window>Preferences>Java>Code Generation>Code and Comments
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      // no special things added
36  }