Package org.polyglotted.xpathstax.data

Examples of org.polyglotted.xpathstax.data.Value


    public void testParse() {
        XPathStaxParser parser = new XPathStaxParser();
        parser.addHandler(new XPathRequest("/catalog/book[@id='bk101']/price"), new NodeHandler() {
            @Override
            public void processNode(XmlNode xmlNode) {
                Value count = xmlNode.getText();
                assertEquals(44.95, count.asDouble(), 0.001);            }

            @Override
            public void elementStart(String elementName) {
                assertEquals("price", elementName);
            }
View Full Code Here

TOP

Related Classes of org.polyglotted.xpathstax.data.Value

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.