Uses of Class
biz.c24.io.api.data.Element

Packages that use Element
biz.c24.io.api Various utility classes. 
biz.c24.io.api.data Data Model super and utility classes. 
biz.c24.io.api.presentation Various classes for parsing and formatting data objects. 
biz.c24.io.api.presentation.swift Specialist API extensions for the SWIFT libraries. 
biz.c24.io.api.transform Transform super and utility classes. 
 

Uses of Element in biz.c24.io.api
 

Methods in biz.c24.io.api that return Element
 Element Factory.createElement(String configName)
          Creates a new Element from the specified configuration in the project file.
static Element Utils.deriveElement(String rootClassName, ClassLoader classLoader)
          Derives an Element from the specified class name.
 

Methods in biz.c24.io.api with parameters of type Element
static Object Factory.loadFromDatabase(Element element, org.hibernate.cfg.Configuration cfg, String primaryKey, String sqlQuery, String hqlQuery, String dialect, ClassLoader loader)
          Loads an object from the specified database configuration using either a primary key, SQL query or HQL query.
static ComplexDataObject Factory.loadFromSource(Element element, Source src)
          Loads an object from the specified source.
 

Uses of Element in biz.c24.io.api.data
 

Subclasses of Element in biz.c24.io.api.data
 class AnyElement
          An element wildcard.
 

Methods in biz.c24.io.api.data that return Element
 Element ComplexDataObject.getDefiningElementDecl()
          Returns the meta-data element declaration that defines this object.
 Element ComplexDataType.getElementDecl(int index)
          Returns the element declaration at index.
 Element ComplexDataObject.getElementDecl(int index)
          Returns the meta-data element declaration at index.
 Element ComplexDataType.getElementDecl(String name)
          Returns the element declaration called name.
 Element ComplexDataObject.getElementDecl(String name)
          Returns the meta-dataelement declaration called name.
 Element ComplexDataObject.getElementDecl(String name, int index)
          Returns the meta-data element declaration called name at index.
 Element Element.getElementRef()
          Returns the element ref.
 Element ComplexDataType.getNativeElementDecl(int index)
          Returns the native element at index.
 Element DataType.getNullDefiningElementDecl()
          Returns the element that will be used to define objects created in the absence of any other defining element declaration.
 Element DocumentRoot.getRootElementDecl()
          Returns the meta-data element declaration for the populated root object.
 Element Element.getSubstitution(int index)
          Returns the substitution at index.
 Element Element.getSubstitution(String name)
          Returns the substitution called name.
 Element Element.getSubstitution(String name, String namespace)
          Returns the substitution called name from namespace.
 Element Element.getSubstitutionGroup()
          Returns the head of this elements substitution group.
 Element ComplexDataType.lookupExpectedElement(InputStream stream, Element docRoot, ComplexDataType docRootType)
          Expected element discovery callback.
 

Methods in biz.c24.io.api.data with parameters of type Element
 void ComplexDataType.addElementDecl(Element element)
          Adds an element declaration.
 void ComplexDataObject.addElementDecl(Element element)
          Adds a meta-data element declaration to this object.
 void ComplexDataObject.addElementDecl(Element element, int index)
          Adds a meta-data element declaration to this object at the specified index.
 void Element.addSubstitution(Element substitution)
          Adds an element to this elements substitution group.
 int ComplexDataType.getElementDeclIndex(Element element)
          Returns the index of an element declaration.
 int ComplexDataObject.getElementDeclIndex(Element element)
          Returns the index of the specified meta-data element declaration.
 int ComplexDataType.getNativeElementDeclIndex(Element element)
          Returns the index of a native element declaration.
 Element ComplexDataType.lookupExpectedElement(InputStream stream, Element docRoot, ComplexDataType docRootType)
          Expected element discovery callback.
 void ComplexDataType.removeElementDecl(Element element)
          Removes an element declaration.
 void Element.removeSubstitution(Element substitution)
          Removes an element from this elements substitution group.
 void ComplexDataObject.setDefiningElementDecl(Element definingElementDecl)
          Sets the meta-data element declaration that defines this object.
 void ComplexDataObject.setDefiningElementDecl(Element definingElementDecl, ComplexDataType type)
          Sets the meta-data element declaration that defines this object but with the specified type.
 void Element.setSubstitutionGroup(Element substitutionGroup)
          Sets the head of this elements substitution group.
 

Constructors in biz.c24.io.api.data with parameters of type Element
ComplexDataObject(Element definingElementDecl)
          Constructs a new instance defined by the specified element.
ComplexDataObject(Element definingElementDecl, ComplexDataType type)
          Constructs a new instance defined by the specified element but with the specified type.
DocumentRoot(Element definingElementDecl)
           
Element(String name, int minCardinality, int maxCardinality, Element ref, DataModel model)
          Constructs a new instance with the specified reference and other values.
 

Uses of Element in biz.c24.io.api.presentation
 

Methods in biz.c24.io.api.presentation that return Element
 Element SAXSource.getRootElement()
          Returns the root element set up via the SAXSource.readObject(biz.c24.io.api.data.Element) method.
 

Methods in biz.c24.io.api.presentation with parameters of type Element
 void XMLSource.addAnyMapping(Element element)
          Deprecated. Use XMLSource.getWrappedSource().SAXSource.registerRemoteComponent(biz.c24.io.api.data.DataComponent) instead.
 ComplexDataObject JavaClassSource.convertObject(Element element, Object obj)
          Converts obj to a complex data object directly, skipping the serialization and streaming steps.
 boolean ParseListener.isAdditionalBatch(Element element)
          Returns whether the specified element should be considered a batch during this parse operation.
 void ParseListener.onEndBatch(Element element)
          End batch parsing callback.
 void ParseListener.onStartBatch(Element element)
          Start of batch parsing callback.
 ComplexDataObject TextualSource.readObject(Element element)
           
 ComplexDataObject JsonSource.readObject(Element element)
           
 ComplexDataObject SwiftSource.readObject(Element element)
           
 ComplexDataObject SSSource.readObject(Element element)
          Reads an object from the the reader or input stream that has been set.
 ComplexDataObject XMLSource.readObject(Element element)
          Reads an object from the the reader or input stream that has been set.
abstract  ComplexDataObject Source.readObject(Element element)
          Reads an object from the the reader or input stream that has been set.
 ComplexDataObject FIXSource.readObject(Element element)
           
 ComplexDataObject JavaClassSource.readObject(Element element)
           
 ComplexDataObject DefaultSource.readObject(Element element)
          Deprecated.  
 ComplexDataObject FixedLengthSource.readObject(Element element)
           
 ComplexDataObject BinarySource.readObject(Element element)
           
 ComplexDataObject SAXSource.readObject(Element element)
          Initialises this source to read data against the specified element declaration.
 void XMLSource.removeAnyMapping(Element element)
          Deprecated. Use XMLSource.getWrappedSource().SAXSource.unregisterRemoteComponent(biz.c24.io.api.data.DataComponent) instead.
 

Constructors in biz.c24.io.api.presentation with parameters of type Element
CDOStreamWriter(Element element)
          Constructor with expected object model.
 

Uses of Element in biz.c24.io.api.presentation.swift
 

Methods in biz.c24.io.api.presentation.swift with parameters of type Element
 ComplexDataObject SwiftPreParser.readObject(Element element)
          Reads an object from the the reader or input stream that has been set.
 

Uses of Element in biz.c24.io.api.transform
 

Methods in biz.c24.io.api.transform that return Element
 Element Transform.getInput(int index)
          Returns the input at index.
 Element Transform.getOutput(int index)
          Returns the output element at index.
protected  Element Transform.resolveElement(Element e, String str)
           
 

Methods in biz.c24.io.api.transform with parameters of type Element
protected  void Map.createOutArr(Object[][] tmp, List[] out, Element[] definingElementDecl)
           
protected  void Map.createOutArr(Object[] tmp, List out, Element definingElementDecl)
           
protected  Object[][] Map.multiTransform(Transform transform, Object[] data, Element[] definingElementDecl)
           
protected  void Map.resolveElement(ComplexDataObject node, String name, Element e, List nodes, int index, String idrefName, String derivationName, String derivationUri, String substitutionName, String substitutionUri, boolean init)
           
protected  Element Transform.resolveElement(Element e, String str)
           
 void Transform.setInput(int index, Element inputElement)
          Sets the input at index.
 void Transform.setOutput(int index, Element outputElement)
          Sets the output at index.
protected  Object[] Map.transform(Transform transform, Object[] data, int outIndex, Element definingElementDecl)
           
 

Constructors in biz.c24.io.api.transform with parameters of type Element
Transform(DataType[] inputTypes, DataType[] outputTypes, Element[] inputElements, Element[] outputElements)
           
Transform(DataType[] inputTypes, DataType[] outputTypes, Element[] inputElements, Element[] outputElements)
           
 



C24 Technologies © 2002-2012: All Rights Reserved.