Package diva.util.xml

Examples of diva.util.xml.XmlElement.writeXML()


     * @exception IOException If there is a problem writing the MoML.
     */
    public void exportMoML(Writer out, String prefix) throws IOException {
        XmlElement element = new XmlElement(_type, _attributes);
        element.setPCData(_label);
        element.writeXML(out, prefix);
    }

    /** Return the value of the attribute with the given name.
     *  Throw an exception if there is no attribute with the
     *  given name in this schematic.
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.