01: package jimm.datavision;
02:
03: /**
04: * Enough things have names that it's time to give them a common interface.
05: *
06: * @author Jim Menard, <a href="mailto:jimm@io.com">jimm@io.com</a>
07: */
08: public interface Nameable {
09:
10: /**
11: * Returns the name.
12: */
13: public String getName();
14:
15: /**
16: * Sets the name.
17: *
18: * @param name the new name
19: */
20: public void setName(String name);
21:
22: }
|