Uses of Class
org.jdom.Text

Packages that use Text
org.jdom   
org.jdom.input   
org.jdom.output   
 

Uses of Text in org.jdom
 

Subclasses of Text in org.jdom
 class CDATA
          CDATA represents character-based content within an XML document represented by JDOM.
 

Methods in org.jdom that return Text
 Text Text.setText(java.lang.String str)
          This will set the value of this Text node.
protected  Text Text.setParent(Element parent)
          This will set the parent of the Text node to the supplied Element.
 Text Text.detach()
           Detaches the Text from its parent, or does nothing if the Text has no parent.
 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.
 Element Element.addContent(Text text)
           This adds text content to this element.
 boolean Element.removeContent(Text text)
           This removes the specified Text.
 

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.
 

Uses of Text in org.jdom.input
 

Methods in org.jdom.input that return Text
 Text JDOMFactory.text(java.lang.String str)
           This creates the Text with the supplied text.
 Text DefaultJDOMFactory.text(java.lang.String text)
           
 

Uses of Text in org.jdom.output
 

Methods in org.jdom.output with parameters of type Text
 void XMLOutputter.output(Text text, java.io.OutputStream out)
           Print out a Text node.
 void XMLOutputter.output(Text text, java.io.Writer out)
           Print out a Text node.
 java.lang.String XMLOutputter.outputString(Text text)
           Return a string representing a Text node.
protected  void XMLOutputter.printText(Text text, java.io.Writer out)
           This will handle printing of Text strings.
 



Copyright © 2002 Jason Hunter, Brett McLaughlin. All Rights Reserved.