// $Id$ package oor.model; /** * A type of term, such as owl:Class, Common Logic concept, etc. * @author Mike Dean * */ public interface TermType { /** * Return a name for this TermType. * @return */ String getName(); }