1 package org.opentrafficsim.water.role; 2 3 import nl.tudelft.simulation.language.d3.DirectedPoint; 4 5 /** 6 * <p> 7 * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 8 * BSD-style license. See <a href="http://opentrafficsim.org/docs/current/license.html">OpenTrafficSim License</a>. 9 * </p> 10 * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, 11 * initial version Dec 22, 2016 <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 class ShippingLine extends Company 17 { 18 19 /** 20 * @param code String; code 21 * @param name String; name 22 * @param location DirectedPoint; location 23 */ 24 public ShippingLine(final String code, final String name, final DirectedPoint location) 25 { 26 super(code, name, location); 27 } 28 29 }