Package com.alexgilleran.icesoap.xml.impl

Examples of com.alexgilleran.icesoap.xml.impl.XMLTextNodeImpl.declarePrefix()


  }

  @Test
  public void testNullValue() {
    XMLTextNode node = new XMLTextNodeImpl(null, "name", null);
    node.declarePrefix(XMLNode.NS_PREFIX_XSI, XMLNode.NS_URI_XSI);

    assertEquals(
        "<name xsi:nil=\"true\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" />",
        node.toString());
  }
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.