1 package org.opentrafficsim.water; 2 3 import java.io.Serializable; 4 5 /** 6 * A named object can report its name. 7 * <p> 8 * Copyright (c) 2013-2019 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/docs/current/license.html">OpenTrafficSim License</a>. 10 * </p> 11 * <p> 12 * Based on software from the IDVV project, which is Copyright (c) 2013 Rijkswaterstaat - Dienst Water, Verkeer en Leefomgeving 13 * and licensed without restrictions to Delft University of Technology, including the right to sub-license sources and derived 14 * products to third parties. 15 * </p> 16 * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, 17 * initial version Nov 6, 2016 <br> 18 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 19 */ 20 public interface Named extends Serializable 21 { 22 /** @return the name */ 23 String getName(); 24 }