View Javadoc
1   package org.opentrafficsim.road.gtu.strategical;
2   
3   import org.opentrafficsim.core.gtu.behavioralcharacteristics.BehavioralCharacteristics;
4   import org.opentrafficsim.core.gtu.plan.strategical.StrategicalPlanner;
5   import org.opentrafficsim.road.gtu.lane.LaneBasedGTU;
6   
7   /**
8    * <p>
9    * Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
10   * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
11   * </p>
12   * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
13   * initial version Nov 26, 2015 <br>
14   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
15   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
16   */
17  public interface LaneBasedStrategicalPlanner extends StrategicalPlanner
18  {
19      /**
20       * get the personal behavioral characteristics of the driver of a GTU.
21       * @return the personal behavioral characteristics of the driver of a GTU.
22       */
23      BehavioralCharacteristics getBehavioralCharacteristics();
24  
25      /**
26       * set the personal behavioral characteristics of the driver of a GTU.
27       * @param behavioralCharacteristics set behavioral characteristics, if the driver of the GTU changes, or the driver is using
28       *            different characteristics
29       */
30      void setBehavioralCharacteristics(final BehavioralCharacteristics behavioralCharacteristics);
31  
32      /** {@inheritDoc} */
33      LaneBasedGTU getGtu();
34  
35  }