01: package gnu.mapping; 02: 03: // FIXME will probably repace by some general "attribute" mechanism. 04: 05: public interface Named { 06: public String getName(); 07: 08: Object getSymbol(); 09: 10: public void setName(String name); 11: }