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