01 /*
02 * AnnotationProperty.java
03 *
04 * Niraj Aswani, 09/March/07
05 *
06 * $Id: AnnotationProperty.html,v 1.0 2007/03/09 16:13:01 niraj Exp $
07 */
08 package gate.creole.ontology;
09
10 /**
11 * An Annotation property.
12 * Annotation properties can be set on any {@link OResource} and can have a String
13 * with language, an URI or an Instance as a value.
14 *
15 * @author Niraj Aswani
16 * @author Johann Petrak
17 *
18 */
19 public interface AnnotationProperty extends RDFProperty {
20 }
|