|
| xercesc::DOMElement * | marshall (xercesc::DOMDocument *document=0, const std::vector< xmlsignature::Signature * > *sigs=0, const Credential *credential=0) const |
| | Marshalls the XMLObject, and its children, into a DOM element.
|
| xercesc::DOMElement * | marshall (xercesc::DOMElement *parentElement, const std::vector< xmlsignature::Signature * > *sigs=0, const Credential *credential=0) const |
| | Marshalls the XMLObject and appends it as a child of the given parent element.
|
| void | detach () |
| | Specialized function for detaching a child object from its parent while disposing of the parent.
|
| const QName & | getElementQName () const |
| | Gets the QName for this element.
|
| const std::set< Namespace > & | getNamespaces () const |
| | Gets the namespaces that are scoped to this element.
|
| void | addNamespace (const Namespace &ns) const |
| | Adds a namespace to the ones already scoped to this element.
|
| void | removeNamespace (const Namespace &ns) |
| | Removes a namespace from this element.
|
| const QName * | getSchemaType () const |
| | Gets the XML schema type of this element.
|
| const XMLCh * | getXMLID () const |
| | Gets the value of the ID attribute set on this object, if any.
|
| xmlconstants::xmltooling_bool_t | getNil () const |
| | Returns the xsi:nil property as an explicit enumerated value.
|
| void | nil (xmlconstants::xmltooling_bool_t value) |
| | Sets the xsi:nil property using an enumerated value.
|
| bool | hasParent () const |
| | Checks to see if this object has a parent.
|
| XMLObject * | getParent () const |
| | Gets the parent of this element or null if there is no parent.
|
| void | setParent (XMLObject *parent) |
| | Sets the parent of this element.
|
| virtual XMLObject * | clone () const =0 |
| | Creates a copy of the object, along with all of its children.
|
| virtual const XMLCh * | getLang () const |
| | Returns the xml:lang property of the object, if any.
|
| bool | nil () const |
| | Returns the xsi:nil property of the object, or false if not set.
|
| void | nil (bool value) |
| | Sets the xsi:nil property.
|
| void | setNil (const XMLCh *value) |
| | Sets the xsi:nil property using a string constant.
|
| virtual bool | hasChildren () const =0 |
| | Checks if this XMLObject has children.
|
| virtual const std::list< XMLObject * > & | getOrderedChildren () const =0 |
| | Returns an unmodifiable list of child objects in the order that they should appear in the serialized representation.
|
| virtual void | removeChild (XMLObject *child)=0 |
| | Used by a child's detach method to isolate the child from this parent object in preparation for destroying the parent (this object).
|
| virtual const XMLCh * | getTextContent (unsigned int position=0) const =0 |
| | Returns the text content at the specified position relative to any child elements.
|
| virtual void | setTextContent (const XMLCh *value, unsigned int position=0)=0 |
| | Sets (or clears) text content relative to a child element's position.
|
| virtual xercesc::DOMElement * | getDOM () const =0 |
| | Gets the DOM representation of this XMLObject, if one exists.
|
| virtual void | setDOM (xercesc::DOMElement *dom, bool bindDocument=false) const =0 |
| | Sets the DOM representation of this XMLObject.
|
| virtual void | setDocument (xercesc::DOMDocument *doc) const =0 |
| | Assigns ownership of a DOM document to the XMLObject.
|
| virtual void | releaseDOM () const =0 |
| | Releases the DOM representation of this XMLObject, if there is one.
|
| virtual void | releaseParentDOM (bool propagateRelease=true) const =0 |
| | Releases the DOM representation of this XMLObject's parent.
|
| virtual void | releaseChildrenDOM (bool propagateRelease=true) const =0 |
| | Releases the DOM representation of this XMLObject's children.
|
|
void | releaseThisandParentDOM () const |
| | A convenience method that is equal to calling releaseDOM() then releaseParentDOM(true).
|
|
void | releaseThisAndChildrenDOM () const |
| | A convenience method that is equal to calling releaseChildrenDOM(true) then releaseDOM().
|
| virtual XMLObject * | unmarshall (xercesc::DOMElement *element, bool bindDocument=false)=0 |
| | Unmarshalls the given W3C DOM element into the XMLObject.
|
|
| void | setDocumentElement (xercesc::DOMDocument *document, xercesc::DOMElement *element) const |
| | Sets the given element as the Document Element of the given Document.
|
| void | marshallInto (xercesc::DOMElement *targetElement, const std::vector< xmlsignature::Signature * > *sigs, const Credential *credential=0) const |
| | Marshalls the XMLObject into the given DOM Element.
|
| void | marshallElementType (xercesc::DOMElement *domElement) const |
| | Creates an xsi:type attribute, corresponding to the given type of the XMLObject, on the DOM element.
|
| void | marshallNamespaces (xercesc::DOMElement *domElement) const |
| | Creates the xmlns attributes for any namespaces set on the XMLObject.
|
| void | marshallContent (xercesc::DOMElement *domElement, const Credential *credential) const |
| | Marshalls the text content and/or child elements of the XMLObject.
|
| virtual void | marshallAttributes (xercesc::DOMElement *domElement) const |
| | Marshalls the attributes from the XMLObject into the given DOM element.
|
| virtual void | prepareForMarshalling () const |
| | Called before marshalling in the event that a new DOM is being generated.
|
| | AbstractXMLObject (const XMLCh *nsURI=0, const XMLCh *localName=0, const XMLCh *prefix=0, const QName *schemaType=0) |
| | Constructor.
|
|
| AbstractXMLObject (const AbstractXMLObject &src) |
| | Copy constructor.
|
| XMLCh * | prepareForAssignment (XMLCh *oldValue, const XMLCh *newValue) |
| | A helper function for derived classes, for assignment of strings.
|
| xercesc::XMLDateTime * | prepareForAssignment (xercesc::XMLDateTime *oldValue, const xercesc::XMLDateTime *newValue) |
| | A helper function for derived classes, for assignment of date/time data.
|
| xercesc::XMLDateTime * | prepareForAssignment (xercesc::XMLDateTime *oldValue, time_t newValue, bool duration=false) |
| | A helper function for derived classes, for assignment of date/time data.
|
| xercesc::XMLDateTime * | prepareForAssignment (xercesc::XMLDateTime *oldValue, const XMLCh *newValue, bool duration=false) |
| | A helper function for derived classes, for assignment of date/time data.
|
| QName * | prepareForAssignment (QName *oldValue, const QName *newValue) |
| | A helper function for derived classes, for assignment of QName data.
|
| XMLObject * | prepareForAssignment (XMLObject *oldValue, XMLObject *newValue) |
| | A helper function for derived classes, for assignment of (singleton) XML objects.
|
A mix-in to implement object marshalling with DOM reuse.