Multi-line svn commit, see body.
[shibboleth/cpp-xmltooling.git] / xmltooling / impl / AnyElement.cpp
index a19060d..bdb3ccc 100644 (file)
@@ -55,12 +55,6 @@ void AnyElementImpl::marshallAttributes(DOMElement* domElement) const {
     marshallExtensionAttributes(domElement);
 }
 
-void AnyElementImpl::marshallElementContent(DOMElement* domElement) const {
-    if(getTextContent()) {
-        domElement->appendChild(domElement->getOwnerDocument()->createTextNode(getTextContent()));
-    }
-}
-
 void AnyElementImpl::processChildElement(XMLObject* childXMLObject, const DOMElement* root) {
     getXMLObjects().push_back(childXMLObject);
 }
@@ -69,10 +63,6 @@ void AnyElementImpl::processAttribute(const DOMAttr* attribute) {
     unmarshallExtensionAttribute(attribute);
 }
 
-void AnyElementImpl::processElementContent(const XMLCh* elementContent) {
-    setTextContent(elementContent);
-}
-
 XMLObject* AnyElementBuilder::buildObject(
     const XMLCh* nsURI, const XMLCh* localName, const XMLCh* prefix, const QName* schemaType
     ) const {