Package org.dom4j

Examples of org.dom4j.Namespace.supportsParent()


            Namespace namespace = (Namespace) object;

            log("Parent node: " + namespace.getParent());

            assertTrue("Results should support the parent relationship",
                    namespace.supportsParent());
            assertTrue(
                    "Results should contain reference to the parent element",
                    namespace.getParent() != null);
            assertTrue("Results should contain reference to the document",
                    namespace.getDocument() != null);
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.