1 package org.djutils.base; 2 3 /** 4 * Interface for all classes with a getDescription() method in addition to a getId() method. <br> 5 * <br> 6 * Copyright (c) 2013-2024 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See 7 * for project information <a href="https://djutils.org" target="_blank"> https://djutils.org</a>. The DJUTILS project is 8 * distributed under a three-clause BSD-style license, which can be found at 9 * <a href="https://djutils.org/docs/license.html" target="_blank"> https://djutils.org/docs/license.html</a>. <br> 10 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 11 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a> 12 * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a> 13 */ 14 public interface Describable extends Identifiable 15 { 16 17 /** 18 * Returns the description. 19 * @return description. 20 */ 21 String getDescription(); 22 23 }