Uses of Interface
com.att.gs.codip.ograph.OGResource

Packages that use OGResource
com.att.gs.codip.ograph OGraph  
com.att.gs.codip.ograph.imp   
 

Uses of OGResource in com.att.gs.codip.ograph
 

Subinterfaces of OGResource in com.att.gs.codip.ograph
 interface OGClass
          Provides instnaces of classes.
 interface OGDatatype
          Provides instances of Datatype.
 interface OGLiteral
          Provides instnaces of Literals.
 interface OGOntology
          This is the interface for the ontology container class.
 interface OGProperty
          Provides definitions of Property.
 interface OGPropInstance
          Provides instances of Property.
 

Classes in com.att.gs.codip.ograph that implement OGResource
 class DAML
          An implementaiton of the OGOntology Interface that provides static instances of the core DAML+OIL Classes and Properties.
 class OGBaseOntology
          An implementaiton of the OGOntology Interface that provides static instances of the OWL Classes and Properties.
 class OWL
          An implementaiton of the OGOntology Interface that provides static instances of the OWL Classes and Properties.
 class RDFS
          An implementaiton of the OGOntology Interface that provides static instances of the RDFS Classes and Properties.
 class XSD
          An implementaiton of the OGOntology Interface that provides static instances of the XML Schema Data types.
 

Methods in com.att.gs.codip.ograph that return OGResource
 OGResource XSD.lookupResource(java.lang.Object theID)
          Magic lookup Resoruce that will create datatype if does not exist in XSD ontologiy.
 OGResource OGInstance.getObject()
          Getter method for this instance's object resource.
 OGResource OGInstance.getProperty()
          Getter method for this instance's property resource.
 OGResource OGInstance.getSubject()
          Getter method for this instance's subject resource.
 OGResource OGPropInstance.getObject()
          Getter method for this properties object resource.
 OGResource OGPropInstance.getSubject()
          Getter method for this properties subject resource.
 OGResource OGOntology.lookupResource(java.lang.Object theID)
          Looks for a matching resource in this ontology.
 OGResource OGOntology.getResource(java.lang.Object theID)
          Looks for a resource in this ontology whose ID matches the provided ID.
 OGResource OGBaseOntology.lookupResource(java.lang.Object theID)
           
 OGResource OGBaseOntology.getResource(java.lang.Object theID)
           
 

Methods in com.att.gs.codip.ograph with parameters of type OGResource
 void OGPropInstance.setObject(OGResource theObject)
          Setter method for this properties object resource.
 void OGPropInstance.setSubject(OGResource theSubject)
          Setter method for this properties subject resource.
 java.util.Iterator OGProperty.subPropertyOf(OGResource aType)
          Looks for a super propery in the subPropertyOf collection of this resource that is a particular type.
 java.util.Iterator OGClass.subClassOf(OGResource aType)
          Looks for a super class in the subClassOf collection of this resource that is a particular type.
 boolean OGResource.containsType(OGResource theType)
          Type checker for multi-types.
 void OGResource.addType(OGResource theType)
          Adds the given type to the list of multi-types.
 void OGResource.removeType(OGResource theType)
          Removes the given type from the list of multi-types.
 OGPropInstance OGResource.addNewPropInstance(OGResource newPropType, OGResource theObject)
          Creates a property instantce and adds it to the resource.
 OGPropInstance OGResource.addNewPropInstance(OGResource newPropType, OGResource theObject)
          Creates a property instantce and adds it to the resource.
 java.util.Iterator OGResource.propInstances(OGResource aType)
          Looks for a property of this resource that is a particular type.
 java.util.Collection OGResource.getPropInstances(OGResource aType)
          Provies a Collection for all of the resource's properties that are a particular type.
 OGClass OGOntology.createClass(OGResource aType)
          Creates a Class in this ontology with a generated unique ID, sets the Clases type to the passed in type and adds the Class to the ontology.
 OGClass OGOntology.createClass(OGResource aType, java.lang.String theID)
          Looks for, and possibilly creates, a Class in this ontology.
 java.util.Iterator OGOntology.classes(OGResource aType)
          Provides a iterator for only the ontology's classes of the provided type.
 java.util.Collection OGOntology.getClasses(OGResource aType)
          Provides a Collection of the ontology's classes of the provided type.
 OGDatatype OGOntology.createDatatype(OGResource aType)
          Creates a Datatype in this ontology with a generated unique ID, sets the Clases type to the passed in type and adds the Datatype to the ontology.
 OGDatatype OGOntology.createDatatype(OGResource aType, java.lang.String theID)
          Looks for, and possibilly creates, a Datatype in this ontology.
 java.util.Iterator OGOntology.datatypes(OGResource aType)
          Provides a iterator for only the ontology's data types of the provided type.
 java.util.Collection OGOntology.getDatatypes(OGResource aType)
          Provides a Collection of the ontology's data types of the provided type.
 OGProperty OGOntology.createProperty(OGResource aType)
          Creates a Property in this ontology with a generated unique ID, sets the Clases type to the passed in type and adds the Property to the ontology.
 OGProperty OGOntology.createProperty(OGResource aType, java.lang.String theID)
          Looks for, and possibilly creates, a Property in this ontology.
 OGPropInstance OGOntology.createPropInstance(OGResource aType)
          Creates a Property instance in this ontology with a generated unique ID, sets the Clases type to the passed in type and adds the Property to the ontology.
 OGPropInstance OGOntology.createPropInstance(OGResource aType, java.lang.String theID)
          Looks for, and possibilly creates, a Property instance in this ontology.
 java.util.Iterator OGOntology.properties(OGResource aType)
          Provides a iterator for only the ontology's properties of the provided type.
 java.util.Collection OGOntology.getProperties(OGResource aType)
          Provides a Collection of the ontology's properties of the provided type.
 OGLiteral OGOntology.createLiteral(OGResource aType)
          Creates a Literal in this ontology with a generated unique ID, sets the Clases type to the passed in type and adds the Literal to the ontology.
 OGLiteral OGOntology.createLiteralByValue(OGResource aType, java.lang.String theID)
          Looks for, and possibilly creates, a Literal in this ontology.
 OGLiteral OGOntology.createLiteral(OGResource aType, java.lang.String theID)
          Looks for, and possibilly creates, a Literal in this ontology.
 java.util.Iterator OGOntology.literals(OGResource aType)
          Provides a iterator for only the ontology's literals of the provided type.
 java.util.Collection OGOntology.getLiterals(OGResource aType)
          Provides a Collection of the ontology's literals of the provided type.
 void OGOntology.addResource(OGResource theResource)
          Adds the provided resource to the ontology.
 void OGOntology.removeResource(OGResource theResource)
          Removes the provided resource from the ontology.
 java.util.Iterator OGOntology.resources(OGResource aType)
          Provides a iterator for only the ontology's resources of the provided type.
 java.util.Collection OGOntology.getResources(OGResource aType)
          Provides a Collection of the ontology's resources of the provided type.
 boolean OGBaseOntology.containsType(OGResource theType)
           
 void OGBaseOntology.addType(OGResource theType)
           
 void OGBaseOntology.removeType(OGResource theType)
           
 OGPropInstance OGBaseOntology.addNewPropInstance(OGResource newPropType, OGResource theObject)
           
 OGPropInstance OGBaseOntology.addNewPropInstance(OGResource newPropType, OGResource theObject)
           
 java.util.Iterator OGBaseOntology.propInstances(OGResource aType)
           
 java.util.Collection OGBaseOntology.getPropInstances(OGResource aType)
           
 OGClass OGBaseOntology.createClass(OGResource aType)
           
 OGClass OGBaseOntology.createClass(OGResource aType, java.lang.String theID)
           
 java.util.Iterator OGBaseOntology.classes(OGResource aType)
           
 java.util.Collection OGBaseOntology.getClasses(OGResource aType)
           
 OGDatatype OGBaseOntology.createDatatype(OGResource aType)
           
 OGDatatype OGBaseOntology.createDatatype(OGResource aType, java.lang.String theID)
           
 java.util.Iterator OGBaseOntology.datatypes(OGResource aType)
           
 java.util.Collection OGBaseOntology.getDatatypes(OGResource aType)
           
 OGProperty OGBaseOntology.createProperty(OGResource aType)
           
 OGPropInstance OGBaseOntology.createPropInstance(OGResource aType)
           
 OGProperty OGBaseOntology.createProperty(OGResource aType, java.lang.String theID)
           
 OGPropInstance OGBaseOntology.createPropInstance(OGResource aType, java.lang.String theID)
           
 java.util.Iterator OGBaseOntology.properties(OGResource aType)
           
 java.util.Collection OGBaseOntology.getProperties(OGResource aType)
           
 OGLiteral OGBaseOntology.createLiteral(OGResource aType)
           
 OGLiteral OGBaseOntology.createLiteral(OGResource aType, java.lang.String theID)
           
 OGLiteral OGBaseOntology.createLiteralByValue(OGResource aType, java.lang.String theValue)
           
 java.util.Iterator OGBaseOntology.literals(OGResource aType)
           
 java.util.Collection OGBaseOntology.getLiterals(OGResource aType)
           
 void OGBaseOntology.addResource(OGResource theResource)
           
 void OGBaseOntology.removeResource(OGResource theResource)
           
 java.util.Iterator OGBaseOntology.resources(OGResource aType)
           
 java.util.Collection OGBaseOntology.getResources(OGResource aType)
           
 

Uses of OGResource in com.att.gs.codip.ograph.imp
 

Classes in com.att.gs.codip.ograph.imp that implement OGResource
 class OGClassImp
           
 class OGDatatypeImp
           
 class OGLiteralImp
           
 class OGOntologyImp
          Ontology Graph
 class OGPropertyImp
           
 class OGPropInstanceImp
           
 class OGResourceImp
           
 class OGVirtualOntologyImp
          Virtual Ontology Graph The virtual ontolgoy graph supports incomplete references.
 

Fields in com.att.gs.codip.ograph.imp declared as OGResource
protected  OGResource OGPropInstanceImp.subject
           
protected  OGResource OGPropInstanceImp.object
           
 

Methods in com.att.gs.codip.ograph.imp that return OGResource
 OGResource OGPropInstanceImp.getObject()
           
 OGResource OGPropInstanceImp.getSubject()
           
 OGResource OGPropInstanceImp.getProperty()
           
 OGResource OGOntologyImp.lookupResource(java.lang.Object theID)
           
 OGResource OGOntologyImp.getResource(java.lang.Object theID)
           
 

Methods in com.att.gs.codip.ograph.imp with parameters of type OGResource
protected  void OWLOntologyFactoryImp.createResourceByType(OGOntologyImp theWorkingOntology, edu.unika.aifb.rdf.api.model.Statement s, OGResource r)
           
protected  void OWLOntologyFactoryImp.addResourceToRDFModel(OGOntology theWorkingOntology, edu.unika.aifb.rdf.api.model.Model theRDFModel, OGResource theSrcResource)
           
 java.util.Iterator OGPropertyImp.subPropertyOf(OGResource aType)
           
 void OGPropInstanceImp.setObject(OGResource theObject)
           
 void OGPropInstanceImp.setSubject(OGResource theSubject)
           
 java.util.Iterator OGClassImp.subClassOf(OGResource aType)
           
 void OGResourceImp.setType(OGResource newType)
           
 boolean OGResourceImp.containsType(OGResource theType)
           
 boolean OGResourceImp.isType(OGResource theType)
           
 void OGResourceImp.addType(OGResource theType)
           
 void OGResourceImp.removeType(OGResource theType)
           
 OGPropInstance OGResourceImp.addNewPropInstance(OGResource newPropType, OGResource theObject)
           
 OGPropInstance OGResourceImp.addNewPropInstance(OGResource newPropType, OGResource theObject)
           
 java.util.Iterator OGResourceImp.propInstances(OGResource aType)
           
 java.util.Collection OGResourceImp.getPropInstances(OGResource aType)
           
 OGClass OGOntologyImp.createClass(OGResource aType)
           
 OGClass OGOntologyImp.createClass(OGResource aType, java.lang.String theID)
           
 java.util.Iterator OGOntologyImp.classes(OGResource aType)
           
 java.util.Collection OGOntologyImp.getClasses(OGResource aType)
           
 OGDatatype OGOntologyImp.createDatatype(OGResource aType)
           
 OGDatatype OGOntologyImp.createDatatype(OGResource aType, java.lang.String theID)
           
 java.util.Iterator OGOntologyImp.datatypes(OGResource aType)
           
 java.util.Collection OGOntologyImp.getDatatypes(OGResource aType)
           
 OGProperty OGOntologyImp.createProperty(OGResource aType)
           
 OGPropInstance OGOntologyImp.createPropInstance(OGResource aType)
           
 OGPropInstance OGOntologyImp.createPropInstance(OGResource aType, java.lang.String theID)
           
 OGProperty OGOntologyImp.createProperty(OGResource aType, java.lang.String theID)
           
 java.util.Iterator OGOntologyImp.properties(OGResource aType)
           
 java.util.Collection OGOntologyImp.getProperties(OGResource aType)
           
 OGLiteral OGOntologyImp.createLiteral(OGResource aType)
           
 OGLiteral OGOntologyImp.createLiteralByValue(OGResource aType, java.lang.String theValue)
           
 OGLiteral OGOntologyImp.createLiteral(OGResource aType, java.lang.String theID)
           
 java.util.Iterator OGOntologyImp.literals(OGResource aType)
           
 java.util.Collection OGOntologyImp.getLiterals(OGResource aType)
           
 void OGOntologyImp.addResource(OGResource theResource)
           
 void OGOntologyImp.removeResource(OGResource theResource)
           
 java.util.Iterator OGOntologyImp.resources(OGResource aType)
           
 java.util.Collection OGOntologyImp.getResources(OGResource aType)
           
 void OGOntologyImp.copySubOntology(OGResource subject, OGOntologyImp subOnto)
          Utility/Display/Debug Methods.
protected  void DAMLOntologyFactoryImp.createResourceByType(OGOntologyImp theWorkingOntology, edu.unika.aifb.rdf.api.model.Statement s, OGResource r)
           
protected  void DAMLOntologyFactoryImp.addResourceToRDFModel(OGOntology theWorkingOntology, edu.unika.aifb.rdf.api.model.Model theRDFModel, OGResource theSrcResource)
           
 



CODIP AT&T Government Solutions, Inc.