Examples of undeclarePrefix()


Examples of org.apache.axiom.om.OMElement.undeclarePrefix()

        super(metaFactory);
    }

    protected void runTest() throws Throwable {
        OMElement element = metaFactory.getOMFactory().createOMElement(new QName("test"));
        element.undeclarePrefix("p");
        Iterator it = element.getAllDeclaredNamespaces();
        assertTrue(it.hasNext());
        OMNamespace ns = (OMNamespace)it.next();
        assertEquals("", ns.getNamespaceURI());
        assertEquals("p", ns.getPrefix());
View Full Code Here

Examples of org.apache.axiom.om.OMElement.undeclarePrefix()

    protected void runTest() throws Throwable {
        OMFactory factory = metaFactory.getOMFactory();
        OMElement parent = factory.createOMElement("parent", null);
        OMElement child = factory.createOMElement("child", null, parent);
        OMNamespace ns = parent.declareNamespace("urn:test", "p");
        child.undeclarePrefix("p");
        assertEquals(ns, parent.findNamespaceURI("p"));
        assertNull(child.findNamespaceURI("p"));
    }
}
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.