Uses of Interface
com.att.gs.codip.resource.LogicalResource

Packages that use LogicalResource
com.att.gs.codip.ograph OGraph  
com.att.gs.codip.ograph.imp   
com.att.gs.codip.resource OGraph  
com.att.gs.codip.resource.rgraph   
 

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

Subinterfaces of LogicalResource 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.
 interface OGResource
          Provides shared functionality of Ontology Resources.
 

Classes in com.att.gs.codip.ograph that implement LogicalResource
 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 LogicalResource
 LogicalResource OGBaseOntology.getType()
           
 

Methods in com.att.gs.codip.ograph with parameters of type LogicalResource
 void OGBaseOntology.setType(LogicalResource theType)
          Collection Access Methods.
 boolean OGBaseOntology.isType(LogicalResource theType)
           
 

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

Classes in com.att.gs.codip.ograph.imp that implement LogicalResource
 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.
 

Uses of LogicalResource in com.att.gs.codip.resource
 

Subinterfaces of LogicalResource in com.att.gs.codip.resource
 interface PhysicalResource
          Defines required functionality of Kage Physical resources.
 

Fields in com.att.gs.codip.resource declared as LogicalResource
protected  LogicalResource AbstractResource.delineatedType
           
 

Methods in com.att.gs.codip.resource that return LogicalResource
 LogicalResource ResourceManager.lookupResource(java.lang.Object theID)
          Looks for an existing instance the specified Resource by ID.
 LogicalResource ResourceManager.lookupResource(java.lang.Object theURI, boolean pLoad)
          Looks for the specified Resource by ID.
 LogicalResource ResourceManager.createResource()
          Creates a new instance of an Resource with a generated unique URI.
 LogicalResource ResourceManager.createResource(java.lang.String theID)
          Finds or creates an Resource by URI.
 LogicalResource ResourceManager.getResource(java.lang.Object theURI)
          Looks for an Resource in the managed colleciton whose URI matches the provided URI.
 LogicalResource AbstractResource.getType()
           
 LogicalResource LogicalResource.getType()
          Getter method for this resource's type.
 

Methods in com.att.gs.codip.resource with parameters of type LogicalResource
 java.lang.String namespaceResolver.getPrefixName(LogicalResource LogicalResource)
          Determines the prefexed name of the provided resource with in the default namespace.
 void ResourceManager.addResource(LogicalResource theResource)
          Adds the provided Resource to the managed collection.
 void ResourceManager.removeResource(LogicalResource theResource)
          Removes the provided Resource from the managed collection.
 void ResourceManager.addAlias(java.lang.String anAlias, LogicalResource theResource)
          Adds an alias for the supplied Resource.
 java.util.Iterator ResourceManager.aliases(LogicalResource theResource)
          Provides an iterator over all aliases for the spefcified Resource that are known by this manager.
 void AbstractResource.setType(LogicalResource newType)
           
 boolean AbstractResource.isType(LogicalResource theType)
           
 void LogicalResource.setType(LogicalResource theType)
          Setter method for this resource's type.
 boolean LogicalResource.isType(LogicalResource theType)
          Type checker, extensions can add support for multi-types.
 

Uses of LogicalResource in com.att.gs.codip.resource.rgraph
 

Classes in com.att.gs.codip.resource.rgraph that implement LogicalResource
 class RGCORE
           
 class RGEdge
           
 class RGLiteral
           
 class RGNode
           
 class RGraph
          RGNode Graph
 

Fields in com.att.gs.codip.resource.rgraph declared as LogicalResource
static LogicalResource RGCORE.Thing
          Top and Bottom LogicalResources.
static LogicalResource RGCORE.Nothing
           
static LogicalResource RGCORE.RDF_type
          RDF/S type included in RGraph.
static LogicalResource RGCORE.RDFS_Class
           
 

Methods in com.att.gs.codip.resource.rgraph that return LogicalResource
 LogicalResource RGraph.lookupResource(java.lang.Object theID)
          Collection Access Methods.
 LogicalResource RGraph.lookupResource(java.lang.Object theID, boolean pCreate)
           
 LogicalResource RGraph.createResource()
           
 LogicalResource RGraph.createResource(java.lang.String theID)
           
 LogicalResource RGraph.createResource(LogicalResource aType)
           
 LogicalResource RGraph.createResource(LogicalResource aType, java.lang.String theID)
           
 LogicalResource RGraph.getResource(java.lang.Object theID)
           
 

Methods in com.att.gs.codip.resource.rgraph with parameters of type LogicalResource
 LogicalResource RGraph.createResource(LogicalResource aType)
           
 LogicalResource RGraph.createResource(LogicalResource aType, java.lang.String theID)
           
 void RGraph.addResource(LogicalResource theLogicalResource)
           
 void RGraph.removeResource(LogicalResource theLogicalResource)
           
 RGEdge RGraph.createEdge(LogicalResource aType)
           
 RGEdge RGraph.createEdge(LogicalResource aType, java.lang.String theID)
           
 RGLiteral RGraph.createLiteral(LogicalResource aType)
           
 RGLiteral RGraph.createLiteralByValue(LogicalResource aType, java.lang.String theValue)
           
 RGLiteral RGraph.createLiteral(LogicalResource aType, java.lang.String theID)
           
 java.util.Iterator RGraph.literals(LogicalResource aType)
           
 java.util.Collection RGraph.getLiterals(LogicalResource aType)
           
 RGEdge RGNode.addNewProperty(LogicalResource newPropType, RGNode theObject)
           
 java.util.Iterator RGNode.properties(LogicalResource aType)
           
 java.util.Collection RGNode.getProperties(LogicalResource aType)
           
 



CODIP AT&T Government Solutions, Inc.