JDOM
0.0.5-BETA

Uses of Class
org.jdom2.Comment

Packages that use Comment
org.jdom2 Classes representing the components of an XML document. 
org.jdom2.filter Classes to both filter and generically type-cast nodes of a document based on type, name, value, or other aspects, and to boolean AND/OR/NEGATE these rules. 
org.jdom2.input Classes to build JDOM documents from various sources. 
org.jdom2.located Extended JDOM Content Classes that contain location coordinates. 
org.jdom2.output Classes to output JDOM documents to various destinations. 
org.jdom2.output.support Classes used to implement output functionality that are not part of the actual Output API, but rather part of the implementation. 
 

Uses of Comment in org.jdom2
 

Methods in org.jdom2 that return Comment
 Comment Comment.clone()
           
 Comment UncheckedJDOMFactory.comment(int line, int col, java.lang.String str)
           
 Comment SlimJDOMFactory.comment(int line, int col, java.lang.String text)
           
 Comment JDOMFactory.comment(int line, int col, java.lang.String text)
          This creates the comment with the supplied text.
 Comment DefaultJDOMFactory.comment(int line, int col, java.lang.String text)
           
 Comment JDOMFactory.comment(java.lang.String text)
          This creates the comment with the supplied text.
 Comment DefaultJDOMFactory.comment(java.lang.String text)
           
 Comment Comment.detach()
           
protected  Comment Comment.setParent(Parent parent)
           
 Comment Comment.setText(java.lang.String text)
          This will set the value of the Comment.
 

Uses of Comment in org.jdom2.filter
 

Methods in org.jdom2.filter that return types with arguments of type Comment
static Filter<Comment> Filters.comment()
          Return a Filter that matches any Comment data.
 

Uses of Comment in org.jdom2.input
 

Methods in org.jdom2.input that return Comment
 Comment DOMBuilder.build(org.w3c.dom.Comment comment)
          This will build a JDOM Comment from an existing DOM Comment
 

Uses of Comment in org.jdom2.located
 

Subclasses of Comment in org.jdom2.located
 class LocatedComment
          An XML comment.
 

Methods in org.jdom2.located that return Comment
 Comment LocatedJDOMFactory.comment(int line, int col, java.lang.String text)
           
 

Uses of Comment in org.jdom2.output
 

Methods in org.jdom2.output with parameters of type Comment
 org.w3c.dom.Comment DOMOutputter.output(Comment comment)
          This converts the JDOM ProcessingInstruction parameter to a DOM ProcessingInstruction, returning the DOM version.
 void XMLOutputter.output(Comment comment, java.io.OutputStream out)
          Print out a Comment.
 void XMLOutputter.output(Comment comment, java.io.Writer out)
          Print out a Comment.
 void StAXEventOutputter.output(Comment comment, javax.xml.stream.util.XMLEventConsumer out)
          Print out a Comment.
 void StAXStreamOutputter.output(Comment comment, javax.xml.stream.XMLStreamWriter out)
          Print out a Comment.
 org.w3c.dom.Comment DOMOutputter.output(org.w3c.dom.Document basedoc, Comment comment)
          This converts the JDOM ProcessingInstruction parameter to a DOM ProcessingInstruction, returning the DOM version.
 java.lang.String XMLOutputter.outputString(Comment comment)
          Return a string representing a Comment.
 

Uses of Comment in org.jdom2.output.support
 

Methods in org.jdom2.output.support with parameters of type Comment
protected  org.w3c.dom.Comment AbstractDOMOutputProcessor.printComment(FormatStack fstack, org.w3c.dom.Document basedoc, Comment comment)
          This will handle printing of a Comment.
protected  void AbstractSAXOutputProcessor.printComment(SAXTarget out, FormatStack fstack, Comment comment)
          This will handle printing of a Comment.
protected  void AbstractXMLOutputProcessor.printComment(java.io.Writer out, FormatStack fstack, Comment comment)
          This will handle printing of a Comment.
protected  void AbstractStAXEventProcessor.printComment(javax.xml.stream.util.XMLEventConsumer out, FormatStack fstack, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)
          This will handle printing of a Comment.
protected  void AbstractStAXStreamProcessor.printComment(javax.xml.stream.XMLStreamWriter out, FormatStack fstack, Comment comment)
          This will handle printing of a Comment.
 org.w3c.dom.Comment DOMOutputProcessor.process(org.w3c.dom.Document basedoc, Format format, Comment comment)
          This will convert the Comment using the given DOM Document to create the resulting DOM Comment.
 org.w3c.dom.Comment AbstractDOMOutputProcessor.process(org.w3c.dom.Document basedoc, Format format, Comment comment)
           
 void SAXOutputProcessor.process(SAXTarget out, Format format, Comment comment)
          Print out a Comment.
 void AbstractSAXOutputProcessor.process(SAXTarget out, Format format, Comment comment)
           
 void XMLOutputProcessor.process(java.io.Writer out, Format format, Comment comment)
          Print out a Comment.
 void AbstractXMLOutputProcessor.process(java.io.Writer out, Format format, Comment comment)
           
 void StAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)
          Print out a Comment.
 void AbstractStAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)
           
 void StAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out, Format format, Comment comment)
          Print out a Comment.
 void AbstractStAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out, Format format, Comment comment)
           
 


JDOM
0.0.5-BETA

Copyright � 2012 Jason Hunter, Brett McLaughlin. All Rights Reserved.