View Javadoc
1   package org.opentrafficsim.graphs;
2   
3   /**
4    * Interface implemented by graphs that sample movements of a lane-based GTU.
5    * <p>
6    * Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7    * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
8    * <p>
9    * $LastChangedDate: 2015-09-14 01:33:02 +0200 (Mon, 14 Sep 2015) $, @version $Revision: 1401 $, by $Author: averbraeck $,
10   * initial version 5 jan. 2015 <br>
11   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
12   */
13  public interface LaneBasedGTUSampler
14  {
15      /**
16       * Force redraw of the graph.
17       */
18      void reGraph();
19  }