Uses of Interface
gate.creole.ontology.AnnotationProperty

Packages that use AnnotationProperty
gate.creole.ontology The GATE ontology API. 
gate.gui.ontology   
 

Uses of AnnotationProperty in gate.creole.ontology
 

Methods in gate.creole.ontology that return AnnotationProperty
 AnnotationProperty Ontology.addAnnotationProperty(OURI aPropertyURI)
          Creates a new AnnotationProperty.
 AnnotationProperty Ontology.getAnnotationProperty(OURI theURI)
          Returns the annotation property for the given URI or null if there is no annotation property with that URI.
 

Methods in gate.creole.ontology that return types with arguments of type AnnotationProperty
 Set<AnnotationProperty> Ontology.getAnnotationProperties()
          Gets the set of Annotation Properties in the ontology where for a property there exists a statement .
 Set<AnnotationProperty> OResource.getSetAnnotationProperties()
          This method returns the annotation properties set on this resource.
 

Methods in gate.creole.ontology with parameters of type AnnotationProperty
 void OResource.addAnnotationPropertyValue(AnnotationProperty theAnnotationProperty, Literal literal)
          Adds a new annotation property value and specifies the language.
 List<Literal> OResource.getAnnotationPropertyValues(AnnotationProperty theAnnotationProperty)
          Gets the list of values for a given property name.
 List<Literal> Ontology.getOntologyAnnotationValues(AnnotationProperty ann)
          Get the values of an ontology annotation property.
 boolean OResource.hasAnnotationPropertyWithValue(AnnotationProperty aProperty, Literal aValue)
          Checks if the resource has the provided annotation property set on it with the specified value.
 void OResource.removeAnnotationPropertyValue(AnnotationProperty theAnnotationProperty, Literal literal)
          For the current resource, the method removes the given literal for the given property.
 void OResource.removeAnnotationPropertyValues(AnnotationProperty theProperty)
          Removes all values for a named property.
 void Ontology.setOntologyAnnotation(AnnotationProperty ann, Literal value)
          Set an annotation property for the ontology to the specified literal value.
 

Uses of AnnotationProperty in gate.gui.ontology
 

Constructors in gate.gui.ontology with parameters of type AnnotationProperty
OntologyEditor.AnnotationPropertyValueAction(String name, OResource oResource, AnnotationProperty property)