Package org.apache.axiom.om.impl.llom

Examples of org.apache.axiom.om.impl.llom.OMNodeImpl


    public void internalSerialize(Serializer serializer, OMOutputFormat format, boolean cache)
            throws OutputException {
        serializer.serializeStartpart(this);
        for (Iterator it = getChildren(); it.hasNext(); ) {
            OMNodeImpl child = (OMNodeImpl)it.next();
            // TODO: AXIOM-392
            if (!((child instanceof SOAPFaultRole || child instanceof SOAPFaultNode) && ((OMElement)child).getText().length() == 0)) {
                child.internalSerialize(serializer, format, cache);
            }
        }
        serializer.writeEndElement();
    }
View Full Code Here

TOP

Related Classes of org.apache.axiom.om.impl.llom.OMNodeImpl

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.