Uses of Interface
commonj.sdo.DataObject

Packages that use DataObject
com.agfa.hap.sdo   
com.agfa.hap.sdo.implementation   
com.agfa.hap.sdo.util   
commonj.sdo   
commonj.sdo.helper   
 

Uses of DataObject in com.agfa.hap.sdo
 

Subinterfaces of DataObject in com.agfa.hap.sdo
 interface PartialDataObject
          HAP-specific extension to DataObject.
 

Uses of DataObject in com.agfa.hap.sdo.implementation
 

Classes in com.agfa.hap.sdo.implementation that implement DataObject
 class AbstractDataObject
           
 class AbstractPartialDataObject
           
 class DataObjectImplementation
           
 

Methods in com.agfa.hap.sdo.implementation that return DataObject
 DataObject DataGraphImplementation.createRootObject(java.lang.String namespaceURI, java.lang.String typeName)
           
 DataObject DataGraphImplementation.createRootObject(Type type)
           
 DataObject AbstractDataObject.getContainer()
           
 DataObject DataGraphImplementation.getRootObject()
           
 DataObject AbstractDataObject.getRootObject()
           
 

Methods in com.agfa.hap.sdo.implementation that return types with arguments of type DataObject
 java.util.List<DataObject> DataObjectConverter.convert(SnapshotDefinition def, java.util.Collection<? extends T> roots)
           
 

Methods in com.agfa.hap.sdo.implementation with parameters of type DataObject
 XMLDocument XMLHelperImpl.createDocument(DataObject dataObject, java.lang.String rootElementURI, java.lang.String rootElementName)
           
 Type TypeHelperImpl.define(DataObject type)
           
 Property TypeHelperImpl.defineOpenContentProperty(java.lang.String uri, DataObject property)
           
 boolean EqualityHelperImpl.equal(DataObject dataObject1, DataObject dataObject2)
           
 boolean EqualityHelperImpl.equalShallow(DataObject dataObject1, DataObject dataObject2)
           
 java.lang.String XMLHelperImpl.save(DataObject dataObject, java.lang.String rootElementURI, java.lang.String rootElementName)
           
 void XMLHelperImpl.save(DataObject dataObject, java.lang.String rootElementURI, java.lang.String rootElementName, java.io.OutputStream outputStream)
           
 void AbstractDataObject.setDataObject(int propertyIndex, DataObject value)
           
 void AbstractDataObject.setDataObject(Property property, DataObject value)
           
 void AbstractDataObject.setDataObject(java.lang.String path, DataObject value)
           
 

Constructors in com.agfa.hap.sdo.implementation with parameters of type DataObject
DataGraphImplementation(DataObject rootObject)
           
 

Uses of DataObject in com.agfa.hap.sdo.util
 

Method parameters in com.agfa.hap.sdo.util with type arguments of type DataObject
protected  void ResultSet.addData(java.util.Collection<? extends DataObject> dos)
           
 

Constructor parameters in com.agfa.hap.sdo.util with type arguments of type DataObject
ResultSet(java.util.Collection<? extends DataObject> data, java.util.List<java.lang.String> propertyPaths, Type rootType)
           
ResultSet(java.util.Collection<? extends DataObject> data, java.lang.String selectClause, Type rootType)
           
 

Uses of DataObject in commonj.sdo
 

Methods in commonj.sdo that return DataObject
 DataObject DataObject.createDataObject(int propertyIndex)
          Returns a new data object contained by this object using the specified property, which must be a containment property.
 DataObject DataObject.createDataObject(int propertyIndex, java.lang.String namespaceURI, java.lang.String typeName)
          Returns a new data object contained by this object using the specified property, which must be a containment property.
 DataObject DataObject.createDataObject(Property property)
          Returns a new data object contained by this object using the specified property, which must be a containment property.
 DataObject DataObject.createDataObject(Property property, Type type)
          Returns a new data object contained by this object using the specified property, which must be of containment type.
 DataObject DataObject.createDataObject(java.lang.String propertyName)
          Returns a new data object contained by this object using the specified property, which must be a containment property.
 DataObject DataObject.createDataObject(java.lang.String propertyName, java.lang.String namespaceURI, java.lang.String typeName)
          Returns a new data object contained by this object using the specified property, which must be a containment property.
 DataObject DataGraph.createRootObject(java.lang.String namespaceURI, java.lang.String typeName)
          Creates a new root data object of the specified type.
 DataObject DataGraph.createRootObject(Type type)
          Creates a new root data object of the specified type.
 DataObject DataObject.getContainer()
          Returns the containing data object or null if there is no container.
 DataObject DataObject.getDataObject(int propertyIndex)
          Returns the value of a DataObject property identified by the specified property index.
 DataObject DataObject.getDataObject(Property property)
          Returns the value of the specified DataObject property.
 DataObject DataObject.getDataObject(java.lang.String path)
          Returns the value of a DataObject property identified by the specified path.
 DataObject ChangeSummary.getOldContainer(DataObject dataObject)
          Returns the value of the container data object at the point when logging began.
 DataObject DataObject.getRootObject()
          Returns the root data object.
 DataObject DataGraph.getRootObject()
          Returns the root data object of this data graph.
 DataObject ChangeSummary.getRootObject()
          Returns the ChangeSummary root DataObject - the object from which changes are tracked.
 

Methods in commonj.sdo with parameters of type DataObject
 DataObject ChangeSummary.getOldContainer(DataObject dataObject)
          Returns the value of the container data object at the point when logging began.
 Property ChangeSummary.getOldContainmentProperty(DataObject dataObject)
          Returns the value of the containment property data object property at the point when logging began.
 Sequence ChangeSummary.getOldSequence(DataObject dataObject)
          Returns the value of the sequence for the data object at the point when logging began.
 ChangeSummary.Setting ChangeSummary.getOldValue(DataObject dataObject, Property property)
          Returns a setting for the specified property representing the property value of the given dataObject at the point when logging began.
 java.util.List ChangeSummary.getOldValues(DataObject dataObject)
          Returns a list of settings that represent the property values of the given dataObject at the point when logging began.
 boolean ChangeSummary.isCreated(DataObject dataObject)
          Returns whether or not the specified data object was created while logging.
 boolean ChangeSummary.isDeleted(DataObject dataObject)
          Returns whether or not the specified data object was deleted while logging.
 boolean ChangeSummary.isModified(DataObject dataObject)
          Returns whether or not the specified data object was updated while logging.
 void DataObject.setDataObject(int propertyIndex, DataObject value)
          Sets the value of a DataObject property identified by the specified property index, to the specified value.
 void DataObject.setDataObject(Property property, DataObject value)
          Sets the value of the specified DataObject property, to the specified value.
 void DataObject.setDataObject(java.lang.String path, DataObject value)
          Sets the value of a DataObject property identified by the specified path, to the specified value.
 

Uses of DataObject in commonj.sdo.helper
 

Methods in commonj.sdo.helper that return DataObject
 DataObject CopyHelper.copy(DataObject dataObject)
          Create a deep copy of the DataObject tree: Copies the dataObject and all its contained DataObjects recursively.
 DataObject CopyHelper.copyShallow(DataObject dataObject)
          Create a shallow copy of the DataObject dataObject: Creates a new DataObject copiedDataObject with the same values as the source dataObject for each property where property.getType().isDataType() is true.
 DataObject DataFactory.create(java.lang.Class interfaceClass)
          Create a DataObject supporting the given interface.
 DataObject DataFactory.create(java.lang.String uri, java.lang.String typeName)
          Create a DataObject of the Type specified by typeName with the given package uri.
 DataObject DataFactory.create(Type type)
          Create a DataObject of the Type specified.
 DataObject XMLDocument.getRootObject()
          Return the root DataObject for the XMLDocument.
 

Methods in commonj.sdo.helper with parameters of type DataObject
 DataObject CopyHelper.copy(DataObject dataObject)
          Create a deep copy of the DataObject tree: Copies the dataObject and all its contained DataObjects recursively.
 DataObject CopyHelper.copyShallow(DataObject dataObject)
          Create a shallow copy of the DataObject dataObject: Creates a new DataObject copiedDataObject with the same values as the source dataObject for each property where property.getType().isDataType() is true.
 XMLDocument XMLHelper.createDocument(DataObject dataObject, java.lang.String rootElementURI, java.lang.String rootElementName)
          Creates an XMLDocument with the specified XML rootElement for the DataObject.
 Type TypeHelper.define(DataObject type)
          Define the DataObject as a Type.
 Property TypeHelper.defineOpenContentProperty(java.lang.String uri, DataObject property)
          Define the DataObject as a Property for setting open content.
 boolean EqualityHelper.equal(DataObject dataObject1, DataObject dataObject2)
          Two DataObjects are equal(Deep) if they are equalShallow, all their compared Properties are equal, and all reachable DataObjects in their graphs excluding containers are equal.
 boolean EqualityHelper.equalShallow(DataObject dataObject1, DataObject dataObject2)
          Two DataObjects are equalShallow if they have the same Type and all their compared Properties are equal.
 java.lang.String XMLHelper.save(DataObject dataObject, java.lang.String rootElementURI, java.lang.String rootElementName)
          Returns the DataObject saved as an XML document with the specified root element.
 void XMLHelper.save(DataObject dataObject, java.lang.String rootElementURI, java.lang.String rootElementName, java.io.OutputStream outputStream)
          Saves the DataObject as an XML document with the specified root element.
 



Copyright © 2007. All Rights Reserved.