1 package org.opentrafficsim.road.gtu.lane.perception.headway; 2 3 import org.opentrafficsim.road.network.lane.Lane; 4 5 /** 6 * Headway of a lane-based object. 7 * <p> 8 * Copyright (c) 2013-2020 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/node/13">OpenTrafficSim License</a>. 10 * <p> 11 * @version $Revision$, $LastChangedDate$, by $Author$, initial version May 15, 2019 <br> 12 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 13 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a> 14 * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a> 15 */ 16 public interface HeadwayLaneBasedObject extends Headway 17 { 18 19 /** 20 * Lane at which the object is located. 21 * @return Lane; lane at which the object is located 22 */ 23 Lane getLane(); 24 25 }