1 package net.sf.clirr.core.spi;
2
3 /***
4 * A named entity in the Java programming language.
5 *
6 * @author lkuehne
7 */
8 public interface Named {
9
10 /***
11 * Returns the name of this object.
12 */
13 String getName();
14
15 }