View Javadoc

1   /*
2    * Created on 7.9.2004
3    *
4    */
5   package net.sf.tomp.general;
6   
7   /***
8    * Common base for all identifiable classes in XTCL and related projects.
9    * @author tomp
10   *
11   */
12  public interface Identifiable {
13  	
14      /***
15       * @return the ID of the object
16       */
17      String getId();
18  }