View Javadoc
1   package org.opentrafficsim.road.gtu.strategical;
2   
3   import org.djunits.value.vdouble.scalar.Time;
4   import org.opentrafficsim.core.gtu.plan.strategical.StrategicalPlanner;
5   import org.opentrafficsim.road.gtu.lane.LaneBasedGTU;
6   import org.opentrafficsim.road.gtu.lane.tactical.LaneBasedTacticalPlanner;
7   
8   /**
9    * <p>
10   * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
11   * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
12   * </p>
13   * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
14   * initial version Nov 26, 2015 <br>
15   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
16   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
17   */
18  public interface LaneBasedStrategicalPlanner extends StrategicalPlanner
19  {
20  
21      /** {@inheritDoc} */
22      @Override
23      LaneBasedGTU getGtu();
24  
25      /** {@inheritDoc} */
26      @Override
27      LaneBasedTacticalPlanner getTacticalPlanner();
28  
29      /** {@inheritDoc} */
30      @Override
31      LaneBasedTacticalPlanner getTacticalPlanner(Time time);
32  
33  }