Uses of Interface
commonj.sdo.DataObject

Packages that use DataObject
commonj.sdo   
commonj.sdo.helper   
org.apache.tuscany.samples.sdo Provides common constants and a command line java interface for executing samples. 
org.apache.tuscany.samples.sdo.advanced Advanced Service Data Object (SDO) Sample Programs 
org.apache.tuscany.samples.sdo.basic Simple Service Data Object (SDO) Sample Programs 
org.apache.tuscany.sdo   
org.apache.tuscany.sdo.api   
org.apache.tuscany.sdo.helper   
org.apache.tuscany.sdo.impl   
org.apache.tuscany.sdo.lib   
org.apache.tuscany.sdo.model.impl   
org.apache.tuscany.sdo.model.internal.impl   
org.apache.tuscany.sdo.model.java.impl   
org.apache.tuscany.sdo.model.xml.impl   
org.apache.tuscany.sdo.spi   
org.apache.tuscany.sdo.util   
org.apache.tuscany.sdo.util.metadata.impl   
org.apache.tuscany.sdo.util.resource   
 

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, String namespaceURI, 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(String propertyName)
          Returns a new data object contained by this object using the specified property, which must be a containment property.
 DataObject DataObject.createDataObject(String propertyName, String namespaceURI, String typeName)
          Returns a new data object contained by this object using the specified property, which must be a containment property.
 DataObject DataGraph.createRootObject(String namespaceURI, 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(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 DataGraph.getRootObject()
          Returns the root data object of this data graph.
 DataObject DataObject.getRootObject()
          Returns the root data object.
 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.
 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(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(Class interfaceClass)
          Create a DataObject supporting the given interface.
 DataObject DataFactory.create(String uri, 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, String rootElementURI, 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(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.
 String XMLHelper.save(DataObject dataObject, String rootElementURI, String rootElementName)
          Returns the DataObject saved as an XML document with the specified root element.
 void XMLHelper.save(DataObject dataObject, String rootElementURI, String rootElementName, OutputStream outputStream)
          Saves the DataObject as an XML document with the specified root element.
 

Uses of DataObject in org.apache.tuscany.samples.sdo
 

Methods in org.apache.tuscany.samples.sdo that return DataObject
 DataObject SampleBase.getDataObjectFromFile(HelperContext scope, String filename)
           
 

Uses of DataObject in org.apache.tuscany.samples.sdo.advanced
 

Methods in org.apache.tuscany.samples.sdo.advanced with parameters of type DataObject
 void PrintDataGraph.printDataObject(DataObject dataObject)
           
 

Uses of DataObject in org.apache.tuscany.samples.sdo.basic
 

Methods in org.apache.tuscany.samples.sdo.basic with parameters of type DataObject
 void CreateCompany.populateGraph(HelperContext scope, DataObject company)
           
 

Uses of DataObject in org.apache.tuscany.sdo
 

Subinterfaces of DataObject in org.apache.tuscany.sdo
 interface AnyTypeDataObject
          A representation of the model object 'Any Type Data Object'.
 interface SimpleAnyTypeDataObject
          A representation of the model object 'Simple Any Type Data Object'.
 

Methods in org.apache.tuscany.sdo that return DataObject
 DataObject SDOFactory.createDynamicDataObject()
          Returns a new object of class 'Dynamic Data Object'.
 DataObject SDOFactory.createDynamicStoreDataObject()
          Returns a new object of class 'Dynamic Store Data Object'.
 DataObject SDOFactory.createExtensibleDataObject()
          Returns a new object of class 'Extensible Data Object'.
 DataObject SDOFactory.createStoreDataObject()
          Returns a new object of class 'Store Data Object'.
 

Uses of DataObject in org.apache.tuscany.sdo.api
 

Methods in org.apache.tuscany.sdo.api that return DataObject
static DataObject SDOUtil.createDataTypeWrapper(Type dataType, Object value)
           
 DataObject SDOHelper.createDataTypeWrapper(Type dataType, Object value)
          Create a DataObject wrapper for an instance of the specified dataType.
 DataObject XMLStreamHelper.loadObject(javax.xml.stream.XMLStreamReader reader)
          Create a DataObject from an element in a XML stream.
 DataObject XMLStreamHelper.loadObject(javax.xml.stream.XMLStreamReader reader, Map options)
          Create a DataObject from an element in a XML stream.
 

Methods in org.apache.tuscany.sdo.api with parameters of type DataObject
static void SDOUtil.addChangeListener(DataObject dob, EventListener l)
           
 void SDOHelper.addChangeListener(DataObject dob, EventListener listener)
          An experimental interface, subject to possible change that permits registration of an event listener with a DataObject instance
 javax.xml.stream.XMLStreamReader XMLStreamHelper.createXMLStreamReader(DataObject sdo)
          Creates and returns a XMLStreamReader that can be used to read a DataObject as a XML event stream.
static List SDOUtil.getOpenContentProperties(DataObject dataObject)
           
 List SDOHelper.getOpenContentProperties(DataObject dataObject)
          Gets the open content subset of the specified DataObject's instance properties.
static Sequence SDOUtil.getSubstitutionValues(DataObject dataObject, Property head)
           
 Sequence SDOHelper.getSubstitutionValues(DataObject dataObject, Property head)
          Gets the Sequence corresponding to the specified substitutable Property of the specified DataObject.
static String SDOUtil.getXPath(DataObject dataObject)
           
 String SDOHelper.getXPath(DataObject dataObject)
          Return an XPath from the containment root to the specified DataObject.
static boolean SDOUtil.isMany(Property property, DataObject context)
           
 boolean SDOHelper.isMany(Property property, DataObject context)
          Returns whether the Property is many-valued given the specified context.
static void SDOUtil.removeChangeListener(DataObject dob, EventListener l)
           
 void SDOHelper.removeChangeListener(DataObject dob, EventListener listener)
          An experimental interface, subject to possible change that permits deregistration of an event listener with a DataObject instance
 void XMLStreamHelper.saveObject(DataObject sdo, javax.xml.stream.XMLStreamWriter writer)
          Save a DataObject to an XML stream.
 void XMLStreamHelper.saveObject(DataObject sdo, javax.xml.stream.XMLStreamWriter writer, Map options)
           
static void SDOUtil.setRootObject(DataGraph dataGraph, DataObject rootObject)
           
 void SDOHelper.setRootObject(DataGraph dataGraph, DataObject rootObject)
          Set the root object of a data graph.
 

Uses of DataObject in org.apache.tuscany.sdo.helper
 

Methods in org.apache.tuscany.sdo.helper that return DataObject
 DataObject CrossScopeCopyHelperImpl.copy(DataObject dataObject)
           
 DataObject CopyHelperImpl.copy(DataObject dataObject)
           
 DataObject CrossScopeCopyHelperImpl.copyShallow(DataObject dataObject)
           
 DataObject CopyHelperImpl.copyShallow(DataObject dataObject)
           
 DataObject DataFactoryImpl.create(Class interfaceClass)
           
 DataObject DataFactoryImpl.create(String uri, String typeName)
           
 DataObject DataFactoryImpl.create(Type type)
           
 DataObject SDOHelperImpl.createDataTypeWrapper(Type dataType, Object value)
           
 DataObject XMLDocumentImpl.getRootObject()
           
 DataObject XMLStreamHelperImpl.loadObject(javax.xml.stream.XMLStreamReader reader)
           
 DataObject XMLStreamHelperImpl.loadObject(javax.xml.stream.XMLStreamReader reader, Map options)
           
 

Methods in org.apache.tuscany.sdo.helper with parameters of type DataObject
 void SDOHelperImpl.addChangeListener(DataObject dob, EventListener listener)
           
protected  void TypeHelperImpl.addPropertyInstanceProperties(Property definedProperty, DataObject modeledProperty)
           
protected  void TypeHelperImpl.addTypeInstanceProperties(Type definedType, DataObject modeledType)
           
 DataObject CrossScopeCopyHelperImpl.copy(DataObject dataObject)
           
 DataObject CopyHelperImpl.copy(DataObject dataObject)
           
 DataObject CrossScopeCopyHelperImpl.copyShallow(DataObject dataObject)
           
 DataObject CopyHelperImpl.copyShallow(DataObject dataObject)
           
 XMLDocument XMLHelperImpl.createDocument(DataObject dataObject, String rootElementURI, String rootElementName)
           
 javax.xml.stream.XMLStreamReader XMLStreamHelperImpl.createXMLStreamReader(DataObject dataObject)
           
 Type TypeHelperImpl.define(DataObject type)
           
 Property TypeHelperImpl.defineOpenContentProperty(String uri, DataObject property)
           
 boolean EqualityHelperImpl.equal(DataObject dataObject1, DataObject dataObject2)
           
 boolean EqualityHelperImpl.equalShallow(DataObject dataObject1, DataObject dataObject2)
           
 List SDOHelperImpl.getOpenContentProperties(DataObject dataObject)
           
 Sequence SDOHelperImpl.getSubstitutionValues(DataObject dataObject, Property head)
           
 boolean SDOHelperImpl.isMany(Property property, DataObject context)
           
 void SDOHelperImpl.removeChangeListener(DataObject dob, EventListener listener)
           
 String XMLHelperImpl.save(DataObject dataObject, String rootElementURI, String rootElementName)
           
 String XMLHelperImpl.save(DataObject dataObject, String rootElementURI, String rootElementName, Object options)
           
 void XMLHelperImpl.save(DataObject dataObject, String rootElementURI, String rootElementName, OutputStream outputStream)
           
 void XMLHelperImpl.save(DataObject dataObject, String rootElementURI, String rootElementName, OutputStream outputStream, Object options)
           
 void XMLStreamHelperImpl.saveObject(DataObject sdo, javax.xml.stream.XMLStreamWriter writer)
           
 void XMLStreamHelperImpl.saveObject(DataObject sdo, javax.xml.stream.XMLStreamWriter writer, Map options)
           
 void SDOHelperImpl.setRootObject(DataGraph dataGraph, DataObject rootObject)
           
 

Constructors in org.apache.tuscany.sdo.helper with parameters of type DataObject
XMLDocumentImpl(org.eclipse.emf.ecore.util.ExtendedMetaData extendedMetaData, DataObject dataObject, String rootElementURI, String rootElementName)
           
 

Uses of DataObject in org.apache.tuscany.sdo.impl
 

Classes in org.apache.tuscany.sdo.impl that implement DataObject
 class AnyTypeDataObjectImpl
          An implementation of the model object 'EData Object Any Type'.
 class DataObjectBase
          Base implementation of the SDO DataObject interface.
 class DataObjectImpl
          Base implementation of the SDO DataObject interface.
 class DynamicDataObjectImpl
          An implementation of the model object 'Dynamic Data Object'.
 class DynamicStoreDataObjectImpl
          An implementation of the model object 'Dynamic Store Data Object'.
 class ExtensibleDataObjectImpl
          An implementation of the model object 'Extensible Data Object'.
 class SimpleAnyTypeDataObjectImpl
          An implementation of the model object 'EData Object Simple Any Type'.
 class StoreDataObjectImpl
          An implementation of the model object 'Store Data Object'.
 

Fields in org.apache.tuscany.sdo.impl declared as DataObject
protected  DataObject ChangeSummaryImpl.dataObject
           
 

Methods in org.apache.tuscany.sdo.impl that return DataObject
 DataObject FactoryBase.create(int typeNumber)
           
 DataObject DataObjectImpl.createDataObject(int propertyIndex)
           
 DataObject DataObjectImpl.createDataObject(int propertyIndex, String namespaceURI, String typeName)
           
 DataObject DataObjectImpl.createDataObject(Property property)
           
 DataObject DataObjectImpl.createDataObject(Property property, Type type)
           
 DataObject DataObjectImpl.createDataObject(String propertyName)
           
 DataObject DataObjectImpl.createDataObject(String propertyName, String namespaceURI, String typeName)
           
 DataObject SDOFactoryImpl.createDynamicDataObject()
           
 DataObject SDOFactoryImpl.createDynamicStoreDataObject()
           
 DataObject DataGraphImpl.createEDataObject(Type type)
           
 DataObject SDOFactoryImpl.createExtensibleDataObject()
           
 DataObject DataGraphImpl.createRootObject(String namespaceURI, String typeName)
           
 DataObject DataGraphImpl.createRootObject(Type type)
           
 DataObject SDOFactoryImpl.createStoreDataObject()
           
 DataObject DataObjectImpl.getContainer()
           
 DataObject ChangeSummaryImpl.getDataObject()
           
 DataObject DataObjectImpl.getDataObject(int propertyIndex)
           
 DataObject DataObjectImpl.getDataObject(Property property)
           
 DataObject DataObjectImpl.getDataObject(String path)
           
 DataObject ChangeSummaryImpl.getOldContainer(DataObject dataObject)
           
 DataObject ChangeSummaryImpl.getOldDataObject(DataObject dataObject)
           
 DataObject ChangeSummaryImpl.getRootObject()
           
 DataObject DataObjectImpl.getRootObject()
           
 DataObject DataGraphImpl.getRootObject()
           
 

Methods in org.apache.tuscany.sdo.impl with parameters of type DataObject
 DataObject ChangeSummaryImpl.getOldContainer(DataObject dataObject)
           
 Property ChangeSummaryImpl.getOldContainmentProperty(DataObject dataObject)
           
 DataObject ChangeSummaryImpl.getOldDataObject(DataObject dataObject)
           
 Sequence ChangeSummaryImpl.getOldSequence(DataObject dataObject)
           
 ChangeSummary.Setting ChangeSummaryImpl.getOldValue(DataObject dataObject, Property property)
           
 List ChangeSummaryImpl.getOldValues(DataObject dataObject)
           
 boolean ChangeSummaryImpl.isCreated(DataObject dataObject)
           
 boolean ChangeSummaryImpl.isDeleted(DataObject dataObject)
           
 boolean ChangeSummaryImpl.isModified(DataObject dataObject)
           
 void ChangeSummaryImpl.setDataObject(DataObject newDataObject)
           
 void DataObjectImpl.setDataObject(int propertyIndex, DataObject value)
           
 void DataObjectImpl.setDataObject(Property property, DataObject value)
           
 void DataObjectImpl.setDataObject(String path, DataObject value)
           
 

Uses of DataObject in org.apache.tuscany.sdo.lib
 

Fields in org.apache.tuscany.sdo.lib declared as DataObject
protected  DataObject UnknownPropertyList.dataObject
           
 

Constructors in org.apache.tuscany.sdo.lib with parameters of type DataObject
UnknownPropertyList(DataObject dataObject, String path)
           
 

Uses of DataObject in org.apache.tuscany.sdo.model.impl
 

Classes in org.apache.tuscany.sdo.model.impl that implement DataObject
 class BaseDataGraphTypeImpl
          An implementation of the model object 'Base Data Graph Type'.
 class DataGraphTypeImpl
          An implementation of the model object 'Data Graph Type'.
 class ModelsTypeImpl
          An implementation of the model object 'Models Type'.
 class PropertyImpl
          An implementation of the model object 'Property'.
 class TextTypeImpl
          An implementation of the model object 'Text Type'.
 class TypeImpl
          An implementation of the model object 'Type'.
 class TypesImpl
          An implementation of the model object 'Types'.
 class XSDTypeImpl
          An implementation of the model object 'XSD Type'.
 

Methods in org.apache.tuscany.sdo.model.impl that return DataObject
 DataObject ModelFactoryImpl.create(int typeNumber)
           
 

Uses of DataObject in org.apache.tuscany.sdo.model.internal.impl
 

Methods in org.apache.tuscany.sdo.model.internal.impl that return DataObject
 DataObject InternalFactoryImpl.create(int typeNumber)
           
 

Uses of DataObject in org.apache.tuscany.sdo.model.java.impl
 

Classes in org.apache.tuscany.sdo.model.java.impl that implement DataObject
 class JavaInfoImpl
          An implementation of the model object 'Info'.
 

Methods in org.apache.tuscany.sdo.model.java.impl that return DataObject
 DataObject JavaFactoryImpl.create(int typeNumber)
           
 

Uses of DataObject in org.apache.tuscany.sdo.model.xml.impl
 

Classes in org.apache.tuscany.sdo.model.xml.impl that implement DataObject
 class XMLInfoImpl
          An implementation of the model object 'Info'.
 

Methods in org.apache.tuscany.sdo.model.xml.impl that return DataObject
 DataObject XMLFactoryImpl.create(int typeNumber)
           
 

Uses of DataObject in org.apache.tuscany.sdo.spi
 

Methods in org.apache.tuscany.sdo.spi that return DataObject
protected  DataObject HelperProviderBase.ResolvableImpl.readDataObject(ObjectInput objectInput)
           
 

Methods in org.apache.tuscany.sdo.spi with parameters of type DataObject
 String SDOHelperBase.getXPath(DataObject dataObject)
           
protected  StringBuffer SDOHelperBase.getXPath(DataObject dataObject, StringBuffer path, DataObject root)
           
protected  void HelperProviderBase.ResolvableImpl.writeDataObject(DataObject dataObject, ObjectOutput objectOutput)
           
 

Uses of DataObject in org.apache.tuscany.sdo.util
 

Methods in org.apache.tuscany.sdo.util that return DataObject
static DataObject DataObjectUtil.create(Type type)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, int propertyIndex)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, int propertyIndex, String namespaceURI, String typeName)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, Property property)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, Property property, Type type)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, String propertyName)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, String propertyName, String namespaceURI, String typeName)
           
static DataObject SDOUtil.createDataTypeWrapper(Type dataType, Object value)
          Deprecated.  
static DataObject DataObjectUtil.getDataObject(DataObject dataObject, int propertyIndex)
           
static DataObject DataObjectUtil.getDataObject(DataObject dataObject, Property property)
           
static DataObject DataObjectUtil.getRootObject(DataObject dataObject)
           
 

Methods in org.apache.tuscany.sdo.util with parameters of type DataObject
static void SDOUtil.addPropertyInstanceProperties(Property definedProperty, DataObject modeledProperty)
          Deprecated. see org.apache.tuscany.sdo.api.SDOUtil#addPropertyInstanceProperty(Property, Property, Object
static void SDOUtil.addTypeInstanceProperties(Type definedType, DataObject modeledType)
          Deprecated. see org.apache.tuscany.sdo.api.SDOUtil#addTypeInstanceProperty(Type, Property, Object
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, int propertyIndex)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, int propertyIndex, String namespaceURI, String typeName)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, Property property)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, Property property, Type type)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, String propertyName)
           
static DataObject DataObjectUtil.createDataObject(DataObject dataObject, String propertyName, String namespaceURI, String typeName)
           
static void DataObjectUtil.delete(DataObject dataObject)
           
static void DataObjectUtil.detach(DataObject dataObject)
           
static Object DataObjectUtil.get(DataObject dataObject, String path)
           
static BigDecimal DataObjectUtil.getBigDecimal(DataObject dataObject, int propertyIndex)
           
static BigDecimal DataObjectUtil.getBigDecimal(DataObject dataObject, Property property)
           
static BigInteger DataObjectUtil.getBigInteger(DataObject dataObject, int propertyIndex)
           
static BigInteger DataObjectUtil.getBigInteger(DataObject dataObject, Property property)
           
static boolean DataObjectUtil.getBoolean(DataObject dataObject, int propertyIndex)
           
static boolean DataObjectUtil.getBoolean(DataObject dataObject, Property property)
           
static byte DataObjectUtil.getByte(DataObject dataObject, int propertyIndex)
           
static byte DataObjectUtil.getByte(DataObject dataObject, Property property)
           
static byte[] DataObjectUtil.getBytes(DataObject dataObject, int propertyIndex)
           
static byte[] DataObjectUtil.getBytes(DataObject dataObject, Property property)
           
static ChangeSummary DataObjectUtil.getChangeSummary(DataObject dataObject)
           
static char DataObjectUtil.getChar(DataObject dataObject, int propertyIndex)
           
static char DataObjectUtil.getChar(DataObject dataObject, Property property)
           
static DataGraph DataObjectUtil.getDataGraph(DataObject dataObject)
           
static DataObject DataObjectUtil.getDataObject(DataObject dataObject, int propertyIndex)
           
static DataObject DataObjectUtil.getDataObject(DataObject dataObject, Property property)
           
static Date DataObjectUtil.getDate(DataObject dataObject, int propertyIndex)
           
static Date DataObjectUtil.getDate(DataObject dataObject, Property property)
           
static double DataObjectUtil.getDouble(DataObject dataObject, int propertyIndex)
           
static double DataObjectUtil.getDouble(DataObject dataObject, Property property)
           
static float DataObjectUtil.getFloat(DataObject dataObject, int propertyIndex)
           
static float DataObjectUtil.getFloat(DataObject dataObject, Property property)
           
static List DataObjectUtil.getInstanceProperties(DataObject dataObject)
           
static Property DataObjectUtil.getInstanceProperty(DataObject dataObject, String propertyName)
           
static int DataObjectUtil.getInt(DataObject dataObject, int propertyIndex)
           
static int DataObjectUtil.getInt(DataObject dataObject, Property property)
           
static List DataObjectUtil.getList(DataObject dataObject, int propertyIndex)
           
static List DataObjectUtil.getList(DataObject dataObject, Property property)
           
static long DataObjectUtil.getLong(DataObject dataObject, int propertyIndex)
           
static long DataObjectUtil.getLong(DataObject dataObject, Property property)
           
static List SDOUtil.getOpenContentProperties(DataObject dataObject)
          Deprecated.  
static Property DataObjectUtil.getProperty(DataObject dataObject, int propertyIndex)
           
static DataObject DataObjectUtil.getRootObject(DataObject dataObject)
           
static Sequence DataObjectUtil.getSequence(DataObject dataObject, int propertyIndex)
           
static Sequence DataObjectUtil.getSequence(DataObject dataObject, Property property)
           
static short DataObjectUtil.getShort(DataObject dataObject, int propertyIndex)
           
static short DataObjectUtil.getShort(DataObject dataObject, Property property)
           
static String DataObjectUtil.getString(DataObject dataObject, int propertyIndex)
           
static String DataObjectUtil.getString(DataObject dataObject, Property property)
           
static Sequence SDOUtil.getSubstitutionValues(DataObject dataObject, Property head)
          Deprecated.  
static Type DataObjectUtil.getType(DataObject dataObject, String namespaceURI, String typeName)
           
static String DataObjectUtil.getXPath(DataObject dataObject)
          Configure EMF to support the SDO runtime by registering a specialized Ecore factory, SDOEcoreFactory.
static boolean SDOUtil.isMany(Property property, DataObject context)
          Deprecated.  
static boolean DataObjectUtil.isSet(DataObject dataObject, String path)
           
static void DataObjectUtil.set(DataObject dataObject, String path, Object value)
           
static void DataObjectUtil.setBigDecimal(DataObject dataObject, int propertyIndex, BigDecimal value)
           
static void DataObjectUtil.setBigDecimal(DataObject dataObject, Property property, BigDecimal value)
           
static void DataObjectUtil.setBigDecimal(DataObject dataObject, String path, BigDecimal value)
           
static void DataObjectUtil.setBigInteger(DataObject dataObject, int propertyIndex, BigInteger value)
           
static void DataObjectUtil.setBigInteger(DataObject dataObject, Property property, BigInteger value)
           
static void DataObjectUtil.setBigInteger(DataObject dataObject, String path, BigInteger value)
           
static void DataObjectUtil.setBoolean(DataObject dataObject, int propertyIndex, boolean value)
           
static void DataObjectUtil.setBoolean(DataObject dataObject, Property property, boolean value)
           
static void DataObjectUtil.setBoolean(DataObject dataObject, String path, boolean value)
           
static void DataObjectUtil.setByte(DataObject dataObject, int propertyIndex, byte value)
           
static void DataObjectUtil.setByte(DataObject dataObject, Property property, byte value)
           
static void DataObjectUtil.setByte(DataObject dataObject, String path, byte value)
           
static void DataObjectUtil.setBytes(DataObject dataObject, int propertyIndex, byte[] value)
           
static void DataObjectUtil.setBytes(DataObject dataObject, Property property, byte[] value)
           
static void DataObjectUtil.setBytes(DataObject dataObject, String path, byte[] value)
           
static void DataObjectUtil.setChar(DataObject dataObject, int propertyIndex, char value)
           
static void DataObjectUtil.setChar(DataObject dataObject, Property property, char value)
           
static void DataObjectUtil.setChar(DataObject dataObject, String path, char value)
           
static void DataObjectUtil.setDataObject(DataObject dataObject, int propertyIndex, DataObject value)
           
static void DataObjectUtil.setDataObject(DataObject dataObject, Property property, DataObject value)
           
static void DataObjectUtil.setDataObject(DataObject dataObject, String path, DataObject value)
           
static void DataObjectUtil.setDate(DataObject dataObject, int propertyIndex, Date value)
           
static void DataObjectUtil.setDate(DataObject dataObject, Property property, Date value)
           
static void DataObjectUtil.setDate(DataObject dataObject, String path, Date value)
           
static void DataObjectUtil.setDouble(DataObject dataObject, int propertyIndex, double value)
           
static void DataObjectUtil.setDouble(DataObject dataObject, Property property, double value)
           
static void DataObjectUtil.setDouble(DataObject dataObject, String path, double value)
           
static void DataObjectUtil.setFloat(DataObject dataObject, int propertyIndex, float value)
           
static void DataObjectUtil.setFloat(DataObject dataObject, Property property, float value)
           
static void DataObjectUtil.setFloat(DataObject dataObject, String path, float value)
           
static void DataObjectUtil.setInt(DataObject dataObject, int propertyIndex, int value)
           
static void DataObjectUtil.setInt(DataObject dataObject, Property property, int value)
           
static void DataObjectUtil.setInt(DataObject dataObject, String path, int value)
           
static void DataObjectUtil.setList(DataObject dataObject, int propertyIndex, List value)
           
static void DataObjectUtil.setList(DataObject dataObject, Property property, List value)
           
static void DataObjectUtil.setList(DataObject dataObject, String path, List value)
           
static void DataObjectUtil.setLong(DataObject dataObject, int propertyIndex, long value)
           
static void DataObjectUtil.setLong(DataObject dataObject, Property property, long value)
           
static void DataObjectUtil.setLong(DataObject dataObject, String path, long value)
           
static void SDOUtil.setRootObject(DataGraph dataGraph, DataObject rootObject)
          Deprecated.  
static void DataObjectUtil.setShort(DataObject dataObject, int propertyIndex, short value)
           
static void DataObjectUtil.setShort(DataObject dataObject, Property property, short value)
           
static void DataObjectUtil.setShort(DataObject dataObject, String path, short value)
           
static void DataObjectUtil.setString(DataObject dataObject, int propertyIndex, String value)
           
static void DataObjectUtil.setString(DataObject dataObject, Property property, String value)
           
static void DataObjectUtil.setString(DataObject dataObject, String path, String value)
           
static void DataObjectUtil.unset(DataObject dataObject, String path)
           
 

Constructors in org.apache.tuscany.sdo.util with parameters of type DataObject
VirtualSequence(DataObject object)
           
 

Uses of DataObject in org.apache.tuscany.sdo.util.metadata.impl
 

Classes in org.apache.tuscany.sdo.util.metadata.impl that implement DataObject
 class JavaMetaDataImpl
          An implementation of the model object 'Java Meta Data'.
 class SDOMetaDataGroupImpl
          An implementation of the model object 'SDO Meta Data Group'.
 class TypeMetaDataImpl
          An implementation of the model object 'Type Meta Data'.
 class XSDMetaDataImpl
          An implementation of the model object 'XSD Meta Data'.
 

Methods in org.apache.tuscany.sdo.util.metadata.impl that return DataObject
 DataObject MetadataFactoryImpl.create(int typeNumber)
           
 

Uses of DataObject in org.apache.tuscany.sdo.util.resource
 

Methods in org.apache.tuscany.sdo.util.resource that return DataObject
 DataObject DataObjectXMLStreamReader.getDataObject()
           
 

Methods in org.apache.tuscany.sdo.util.resource with parameters of type DataObject
 void ChangeSummaryStreamDeserializer.begin(DataObject rootObject, HelperContext scope, javax.xml.stream.XMLStreamReader reader)
          Imports ChangeSummary 2-1.
protected  void ChangeSummaryStreamDeserializer.getChangeSummary(DataObject rootObject)
           
protected  boolean ChangeSummaryStreamSerializer.skipDeletedModification(DataObject modifiedDataObject)
           
 

Constructors in org.apache.tuscany.sdo.util.resource with parameters of type DataObject
DataObjectXMLStreamReader(DataObject dataObject, String rootElmentURI, String rootElementName)
           
DataObjectXMLStreamReader(DataObject dataObject, String rootElmentURI, String rootElementName, TypeHelper typeHelper)
           
DataObjectXMLStreamReader(DataObject dataObject, String rootElmentURI, String rootElementName, TypeHelper typeHelper, XSDHelper xsdHelper)
           
DataObjectXMLStreamReader(Property rootElement, DataObject dataObject, TypeHelper typeHelper, XSDHelper xsdHelper)
           
DataObjectXMLStreamReader(TypeHelper typeHelper, XSDHelper xsdHelper, Property rootElement, DataObject dataObject)
           
DataObjectXMLStreamReader(TypeHelper typeHelper, XSDHelper xsdHelper, Property rootElement, DataObject dataObject, DataObject serializeRoot)
           
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.