Uses of Interface
gate.creole.ontology.ONodeID

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

Uses of ONodeID in gate.creole.ontology
 

Subinterfaces of ONodeID in gate.creole.ontology
 interface OBNodeID
          An object representing an ontology node ID.
 interface OURI
          Interface for objects representing an URI.
 

Classes in gate.creole.ontology that implement ONodeID
 class URI
          Deprecated. Use OURI objects and the Ontology factory methods for creating them instead.
 

Methods in gate.creole.ontology that return ONodeID
 ONodeID LiteralOrONodeID.getONodeID()
          Get the ONodeID object if this object represents a node ID.
 ONodeID OResource.getONodeID()
           
 ONodeID Triple.getSubject()
           
 

Methods in gate.creole.ontology with parameters of type ONodeID
 void OntologyTripleStore.addTriple(ONodeID subject, OURI predicate, Literal object)
          Add a triple with a literal triple object to the triple store.
 void OntologyTripleStore.addTriple(ONodeID subject, OURI predicate, ONodeID object)
          Add a triple with a non-literal triple object to the triple store.
 int ONodeID.compareTo(ONodeID other)
           
 int URI.compareTo(ONodeID other)
          Deprecated.  
 boolean Ontology.containsOClass(ONodeID theURI)
          Checks whether a class with the specified URI or blank node ID exists in the ontology.
 OClass Ontology.getOClass(ONodeID theClassID)
          Retrieves a both named classes and anonymous classes and retrictions that match either the URI or the blank node identifier represented by ONodeID
 void OntologyTripleStore.removeTriple(ONodeID subject, OURI predicate, Literal object)
          Remove a statement(triple) with a literal triple object from the ontology triple store.
 void OntologyTripleStore.removeTriple(ONodeID subject, OURI predicate, ONodeID object)
          Remove a statement(triple) with a non-literal triple object from the ontology triple store.
 void OntologyTupleQuery.setBinding(String varName, ONodeID value)
          Set the binding of a query variable to a new value.
 void OntologyTripleStoreListener.tripleAdded(ONodeID subject, OURI predicate, Literal object)
           
 void OntologyTripleStoreListener.tripleAdded(ONodeID subject, OURI predicate, ONodeID object)
           
 void OntologyTripleStoreListener.tripleRemoved(ONodeID subject, OURI predicate, Literal object)
           
 void OntologyTripleStoreListener.tripleRemoved(ONodeID subject, OURI predicate, ONodeID object)
           
 

Uses of ONodeID in gate.gui.ontology
 

Fields in gate.gui.ontology with type parameters of type ONodeID
protected  HashMap<DefaultMutableTreeNode,ONodeID> OntologyEditor.reverseMap