Package com.ociweb.xml

Examples of com.ociweb.xml.WAX.processingInstruction()


        //   <model>Prius</model>
        // </car>

        out("Processing instruction:");
        wax = new WAX();
        wax.processingInstruction("target", "data")
            .start("car").attr("year", 2008)
           .child("model", "Prius").close();
        // <?target data?>
        // <car year="2008">
        //   <model>Prius</model>
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.