Package com.google.gwt.xml.client

Examples of com.google.gwt.xml.client.CDATASection


   public void createCDATASection() {
      // Arrange
      Document document = XMLParser.createDocument();

      // Act
      CDATASection cdata = document.createCDATASection("my cdata Value");

      // Assert
      assertEquals("my cdata Value", cdata.getData());
      assertEquals(document.getDocumentElement(), cdata.getOwnerDocument().getDocumentElement());
   }
View Full Code Here

TOP

Related Classes of com.google.gwt.xml.client.CDATASection

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.