Package com.lightcrafts.utils.xml

Examples of com.lightcrafts.utils.xml.XMLException


        void saveMarker(XmlNode node) {
            node.setAttribute("type", getName());
        }
        void verifyMarker(XmlNode node) throws XMLException {
            if (! node.getAttribute("type").equals(getName())) {
                throw new XMLException("Unexpected SaveOptions Options class");
            }
        }
View Full Code Here

TOP

Related Classes of com.lightcrafts.utils.xml.XMLException

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.