1 package org.opentrafficsim.road.network; 2 3 import org.opentrafficsim.core.network.Network; 4 import org.opentrafficsim.core.perception.PerceivableContext; 5 import org.opentrafficsim.road.definitions.RoadDefinitions; 6 7 /** 8 * RoadNetwork adds a number of methods to the Network class that are specific for roads, such as the LaneTypes. <br> 9 * <br> 10 * Copyright (c) 2003-2018 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See 11 * for project information <a href="https://www.simulation.tudelft.nl/" target="_blank">www.simulation.tudelft.nl</a>. The 12 * source code and binary code of this software is proprietary information of Delft University of Technology. 13 * @author <a href="https://www.tudelft.nl/averbraeck" target="_blank">Alexander Verbraeck</a> 14 */ 15 public interface RoadNetwork extends Network, PerceivableContext, RoadDefinitions 16 { 17 // interfaces that are unique to a Roadnetwork as opposed to a Network 18 }