01: package net.sf.clirr.core.spi; 02: 03: /** 04: * A named entity in the Java programming language. 05: * 06: * @author lkuehne 07: */ 08: public interface Named { 09: 10: /** 11: * Returns the name of this object. 12: */ 13: String getName(); 14: 15: }