Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.jdom.Text

Uses of Text in org.jdom
 

Subclasses of Text in org.jdom
 class CDATA
          An XML CDATA section.
 

Methods in org.jdom that return Text
 Text UncheckedJDOMFactory.text(java.lang.String str)
           
 Text JDOMFactory.text(java.lang.String str)
          This creates the Text with the supplied text.
 Text DefaultJDOMFactory.text(java.lang.String text)
           
 Text Text.setText(java.lang.String str)
          This will set the value of this Text node.
 Text CDATA.setText(java.lang.String str)
          This will set the value of this CDATA node.
 

Methods in org.jdom with parameters of type Text
 void Text.append(Text text)
          This will append the content of another Text node to this node.
 

Constructors in org.jdom with parameters of type Text
IllegalAddException(Element base, Text added, java.lang.String reason)
          This will create an Exception indicating that the addition of the Text to the Element is illegal.