Uses of Class
org.cdmckay.coffeedom.Text

Packages that use Text
org.cdmckay.coffeedom Classes to represent the components of an XML document. 
org.cdmckay.coffeedom.output Classes to output CoffeeDOM documents to various destinations. 
 

Uses of Text in org.cdmckay.coffeedom
 

Subclasses of Text in org.cdmckay.coffeedom
 class CDATA
          An XML CDATA section.
 

Methods in org.cdmckay.coffeedom that return Text
 Text Text.clone()
          This will return a clone of this Text node, with the same character content, but no parent.
 Text Text.detach()
           
protected  Text Text.setParent(Parent parent)
           
 Text Text.setText(String str)
          This will set the value of this Text node.
 Text CDATA.setText(String str)
          This will set the value of this CDATA node.
 Text UncheckedCoffeeDOMFactory.text(String str)
           
 Text DefaultCoffeeDOMFactory.text(String text)
           
 Text CoffeeDOMFactory.text(String str)
          This creates the Text with the supplied text.
 

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

Uses of Text in org.cdmckay.coffeedom.output
 

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



Copyright © 2011. All Rights Reserved.