Uses of Interface
org.w3c.dom.Text

Packages that use Text
com.japisoft.fastparser.dom   
org.w3c.dom   
 

Uses of Text in com.japisoft.fastparser.dom
 

Classes in com.japisoft.fastparser.dom that implement Text
 class TextImpl
          Text
 

Methods in com.japisoft.fastparser.dom that return Text
 Text DocumentImpl.createTextNode(java.lang.String data)
          Creates a Text node given the specified string.
 Text TextImpl.splitText(int offset)
          Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings.
 

Uses of Text in org.w3c.dom
 

Subinterfaces of Text in org.w3c.dom
 interface CDATASection
          CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup.
 

Methods in org.w3c.dom that return Text
 Text Text.splitText(int offset)
          Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings.
 Text Document.createTextNode(java.lang.String data)
          Creates a Text node given the specified string.