01 /*
02 * AnonymouseClass.java
03 *
04 * Niraj Aswani, 09/March/07
05 *
06 * $Id: AnonymouseClass.html,v 1.0 2007/03/09 16:13:01 niraj Exp $
07 */
08 package gate.creole.ontology;
09
10 /**
11 * This class represents the AnonymousClass. Anonymous class is the one
12 * that doesn't have any URI or name assigned to it in the ontology.
13 *
14 * @author Niraj Aswani
15 *
16 */
17 public interface AnonymousClass extends OClass {
18 }
|