AbstractLaneBasedStrategicalPlanner.java

package org.opentrafficsim.road.gtu.strategical;

import java.io.Serializable;

import org.opentrafficsim.core.gtu.behavioralcharacteristics.BehavioralCharacteristics;

/**
 * <p>
 * Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
 * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
 * </p>
 * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $,
 * initial version Nov 26, 2015 <br>
 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
 */
public abstract class AbstractLaneBasedStrategicalPlanner implements LaneBasedStrategicalPlanner, Serializable
{
    /** */
    private static final long serialVersionUID = 20151126L;
    
    /** The personal driving characteristics, which contain settings for the tactical planner. */
    protected BehavioralCharacteristics behavioralCharacteristics;

    /**
     * @param behavioralCharacteristics the personal driving characteristics, which contain settings for the tactical planner
     */
    public AbstractLaneBasedStrategicalPlanner(final BehavioralCharacteristics behavioralCharacteristics)
    {
        super();
        this.behavioralCharacteristics = behavioralCharacteristics;
    }

    /** {@inheritDoc} */
    @Override
    public final BehavioralCharacteristics getBehavioralCharacteristics()
    {
        return this.behavioralCharacteristics;
    }

    /** {@inheritDoc} */
    @Override
    public final void setBehavioralCharacteristics(final BehavioralCharacteristics behavioralCharacteristics)
    {
        this.behavioralCharacteristics = behavioralCharacteristics;
    }
    
    

}