/* * Created on 7.9.2004 * */ package net.sf.tomp.general; /** * Common base for all identifiable classes in XTCL and related projects. * @author tomp * */ public interface Identifiable { /** * @return the ID of the object */ String getId(); }