Package org.castor.xmlctf.xmldiff.xml.nodes

Examples of org.castor.xmlctf.xmldiff.xml.nodes.ProcessingInstruction


     * @param data the content of the processing instruction
     * @throws org.xml.sax.SAXException never
     */
    public void processingInstruction(final String target, final String data)
                                                  throws org.xml.sax.SAXException {
        ProcessingInstruction pi = new ProcessingInstruction(target, data);
        _currentNode.addChild(pi);
    }
View Full Code Here

TOP

Related Classes of org.castor.xmlctf.xmldiff.xml.nodes.ProcessingInstruction

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.