Package org.apache.cxf.aegis.util.stax

Examples of org.apache.cxf.aegis.util.stax.DepthXMLStreamReader


        depth = root.getDepth();
    }

    public ElementReader(XMLStreamReader reader) {
        this(new DepthXMLStreamReader(reader));
    }
View Full Code Here


        // XMLStreamReader xmlReader = factory.createXMLStreamReader(is);
        XMLStreamReader xmlReader = StaxUtils.createXMLStreamReader(is, null);

        xmlReader.nextTag();

        this.root = new DepthXMLStreamReader(xmlReader);
        this.localName = root.getLocalName();
        this.name = root.getName();
        this.namespace = root.getNamespaceURI();

        extractXsiType();
View Full Code Here

TOP

Related Classes of org.apache.cxf.aegis.util.stax.DepthXMLStreamReader

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.