Package org.apache.axiom.om.impl.dom

Examples of org.apache.axiom.om.impl.dom.DocumentImpl


            OMDOMFactory factory = new OMDOMFactory();
            // Not really sure whether this will work :-?
            XMLStreamReader reader = StAXUtils
                    .createXMLStreamReader(inputSource.getCharacterStream());
            StAXOMBuilder builder = new StAXOMBuilder(factory, reader);
            DocumentImpl doc = (DocumentImpl) builder.getDocument();
            doc.close(true);
            return doc;
        } catch (XMLStreamException e) {
            throw new SAXException(e);
        }
    }
View Full Code Here


        try {
            OMDOMFactory factory = new OMDOMFactory();
            XMLStreamReader reader = StAXUtils
                    .createXMLStreamReader(is);
            StAXOMBuilder builder = new StAXOMBuilder(factory, reader);
            DocumentImpl doc = (DocumentImpl) builder.getDocument();
            doc.close(true);
            return doc;
        } catch (XMLStreamException e) {
            throw new SAXException(e);
        }
    }
View Full Code Here

        return metaFactory;
    }

    public OMDocument createOMDocument() {
        if (this.document == null)
            this.document = new DocumentImpl(this);

        return this.document;
    }
View Full Code Here

        switch (((ParentNode) parent).getNodeType()) {
            case Node.ELEMENT_NODE: { // We are adding a new child to an elem
                return new ElementImpl((ElementImpl) parent, localName, (OMNamespaceImpl) ns, this);
            }
            case Node.DOCUMENT_NODE: {
                DocumentImpl docImpl = (DocumentImpl) parent;
                ElementImpl elem = new ElementImpl(docImpl, localName,
                                       (OMNamespaceImpl) ns, this);
                docImpl.appendChild(elem);
                return elem;
            }
            case Node.DOCUMENT_FRAGMENT_NODE:
                DocumentFragmentImpl docFragImpl = (DocumentFragmentImpl) parent;
                return new ElementImpl((DocumentImpl) docFragImpl
View Full Code Here

                        .getOwnerDocument(), localName, (OMNamespaceImpl) ns,
                                             builder, this);
                parentElem.appendChild(elem);
                return elem;
            case Node.DOCUMENT_NODE:
                DocumentImpl docImpl = (DocumentImpl) parent;
                ElementImpl elem2 = new ElementImpl(docImpl, localName,
                                                    (OMNamespaceImpl) ns, builder, this);
                docImpl.appendChild(elem2);
                return elem2;

            case Node.DOCUMENT_FRAGMENT_NODE:
                DocumentFragmentImpl docFragImpl = (DocumentFragmentImpl) parent;
                return new ElementImpl((DocumentImpl) docFragImpl
View Full Code Here

            return createOMText(text, type);
        } else if (parent instanceof DocumentImpl) {
            throw new OMHierarchyException(
                    "DOM doesn't support text nodes as children of a document");
        } else {
            DocumentImpl ownerDocument = (DocumentImpl)((ElementImpl)parent).getOwnerDocument();
            TextNodeImpl txt;
            if (type == OMNode.CDATA_SECTION_NODE) {
                txt = new CDATASectionImpl(ownerDocument, text, this);
            } else {
                txt = new TextImpl(ownerDocument, text, type, this);
View Full Code Here

    public DocumentImpl getDocument() {
        return (DocumentImpl) this.createOMDocument();
    }

    public OMDocument createOMDocument(OMXMLParserWrapper builder) {
        this.document = new DocumentImpl(builder, this);
        return this.document;
    }
View Full Code Here

        this.document = doc;
    }

    public OMDocument createOMDocument() {
        if (this.document == null)
            this.document = new DocumentImpl(this);

        return this.document;
    }
View Full Code Here

                    .getOwnerDocument(), localName, (NamespaceImpl) ns, this);
            parentElem.appendChild(elem);
            return elem;

        case Node.DOCUMENT_NODE:
            DocumentImpl docImpl = (DocumentImpl) parent;
            return new ElementImpl(docImpl, localName,
                    (NamespaceImpl) ns, this);

        case Node.DOCUMENT_FRAGMENT_NODE:
            DocumentFragmentImpl docFragImpl = (DocumentFragmentImpl) parent;
View Full Code Here

                    .getOwnerDocument(), localName, (NamespaceImpl) ns,
                    builder, this);
            parentElem.appendChild(elem);
            return elem;
        case Node.DOCUMENT_NODE:
            DocumentImpl docImpl = (DocumentImpl) parent;
            ElementImpl elem2 = new ElementImpl(docImpl, localName,
                    (NamespaceImpl) ns, builder, this);
            docImpl.appendChild(elem2);
            return elem2;

        case Node.DOCUMENT_FRAGMENT_NODE:
            DocumentFragmentImpl docFragImpl = (DocumentFragmentImpl) parent;
            return new ElementImpl((DocumentImpl) docFragImpl
View Full Code Here

TOP

Related Classes of org.apache.axiom.om.impl.dom.DocumentImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.