Package com.ociweb.xml

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


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

        out("Comment:");
        wax = new WAX();
        wax.comment("This is a hybrid car.")
           .start("car").child("model", "Prius").close();
        // <!-- This is a hybrid car. -->
        // <car>
        //   <model>Prius</model>
        // </car>
View Full Code Here


        wax.defaultNamespace("http://www.ociweb.com/music",
            "http://www.ociweb.com/xml/music.xsd");
        wax.namespace("date", "http://www.ociweb.com/date",
            "http://www.ociweb.com/xml/date.xsd");

        wax.comment("This is one of my favorite CDs!");
        wax.start("cd");
        wax.attr("year", 2007);

        wax.child("title", "Worrisome Heart");
        wax.child("date", "purchaseDate", "4/3/2008");
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.