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