Uses of Interface
org.w3c.dom.Text

Packages that use Text
org.apache.xalan.lib.sql Provides extension functions for connecting to a JDBC data source, executing a query, and working incrementally through "streamable" result set. 
org.apache.xalan.stree Implementation of the Xalan Source Tree, which is a DOM implementation that is optimized for XSLT processing and the needs of Xalan -- derived nodes can index the children, and, combined with specialized node iterators (and tree walkers) can provide optimal child retrieval. 
org.apache.xalan.utils Implementation of Xalan utility classes. 
org.apache.xpath Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. 
org.w3c.dom Document Object Model level 2 interfaces. 
 

Uses of Text in org.apache.xalan.lib.sql
 

Classes in org.apache.xalan.lib.sql that implement Text
 class ColumnData
          Represents the col element text node, i.e., the column value.
 

Methods in org.apache.xalan.lib.sql that return Text
 Text ColumnData.splitText(int offset)
           
 

Uses of Text in org.apache.xalan.stree
 

Classes in org.apache.xalan.stree that implement Text
 class CDATASectionImpl
           
 class CommentImpl
           
 class TextImpl
           
 

Methods in org.apache.xalan.stree that return Text
 Text DocumentImpl.createTextNode(java.lang.String data)
          Create a Text node.
 

Uses of Text in org.apache.xalan.utils
 

Methods in org.apache.xalan.utils that return Text
 Text UnImplNode.createTextNode(java.lang.String data)
          **For internal use only** Unimplemented.
 Text UnImplNode.splitText(int offset)
          **For internal use only** Unimplemented.
 

Uses of Text in org.apache.xpath
 

Methods in org.apache.xpath with parameters of type Text
 boolean DOMHelper.isIgnorableWhitespace(Text node)
          Deprecated.  
 

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 Document.createTextNode(java.lang.String data)
          Creates a Text node given the specified string.
 Text Text.splitText(int offset)
          Breaks this node into two nodes at the specified offset , keeping both in the tree as siblings.
 



Copyright © 2000 Apache XML Project. All Rights Reserved.