package org.opentrafficsim.road.gtu.strategical;
import org.opentrafficsim.core.gtu.behavioralcharacteristics.BehavioralCharacteristics;
import org.opentrafficsim.core.gtu.plan.strategical.StrategicalPlanner;
import org.opentrafficsim.road.gtu.lane.LaneBasedGTU;
/**
*
* Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
* initial version Nov 26, 2015
* @author Alexander Verbraeck
* @author Peter Knoppers
*/
public interface LaneBasedStrategicalPlanner extends StrategicalPlanner
{
/**
* get the personal behavioral characteristics of the driver of a GTU.
* @return the personal behavioral characteristics of the driver of a GTU.
*/
BehavioralCharacteristics getBehavioralCharacteristics();
/**
* set the personal behavioral characteristics of the driver of a GTU.
* @param behavioralCharacteristics set behavioral characteristics, if the driver of the GTU changes, or the driver is using
* different characteristics
*/
void setBehavioralCharacteristics(final BehavioralCharacteristics behavioralCharacteristics);
/** {@inheritDoc} */
LaneBasedGTU getGtu();
}