Uses of Class
org.jdom2.Comment
-
Packages that use Comment Package Description 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 Modifier and Type Method Description Comment
Comment. clone()
Comment
DefaultJDOMFactory. comment(int line, int col, java.lang.String text)
Comment
DefaultJDOMFactory. comment(java.lang.String text)
Comment
JDOMFactory. comment(int line, int col, java.lang.String text)
This creates the comment with the supplied text.Comment
JDOMFactory. comment(java.lang.String text)
This creates the comment with the supplied text.Comment
SlimJDOMFactory. comment(int line, int col, java.lang.String text)
Comment
UncheckedJDOMFactory. comment(int line, int col, java.lang.String str)
Comment
Comment. detach()
protected Comment
Comment. setParent(Parent parent)
Comment
Comment. setText(java.lang.String text)
This will set the value of theComment
. -
Uses of Comment in org.jdom2.filter
Methods in org.jdom2.filter that return types with arguments of type Comment Modifier and Type Method Description static Filter<Comment>
Filters. comment()
Return a Filter that matches anyComment
data. -
Uses of Comment in org.jdom2.input
Methods in org.jdom2.input that return Comment Modifier and Type Method Description 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 Modifier and Type Class Description class
LocatedComment
An XML comment.Methods in org.jdom2.located that return Comment Modifier and Type Method Description 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 Modifier and Type Method Description org.w3c.dom.Comment
DOMOutputter. output(Comment comment)
This converts the JDOMProcessingInstruction
parameter to a DOM ProcessingInstruction, returning the DOM version.org.w3c.dom.Comment
DOMOutputter. output(org.w3c.dom.Document basedoc, Comment comment)
This converts the JDOMProcessingInstruction
parameter to a DOM ProcessingInstruction, returning the DOM version.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
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
java.lang.String
XMLOutputter. outputString(Comment comment)
Return a string representing aComment
. -
Uses of Comment in org.jdom2.output.support
Methods in org.jdom2.output.support with parameters of type Comment Modifier and Type Method Description protected org.w3c.dom.Comment
AbstractDOMOutputProcessor. printComment(FormatStack fstack, org.w3c.dom.Document basedoc, Comment comment)
This will handle printing of aComment
.protected void
AbstractSAXOutputProcessor. printComment(SAXTarget out, FormatStack fstack, Comment comment)
This will handle printing of aComment
.protected void
AbstractStAXEventProcessor. printComment(javax.xml.stream.util.XMLEventConsumer out, FormatStack fstack, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)
This will handle printing of aComment
.protected void
AbstractStAXStreamProcessor. printComment(javax.xml.stream.XMLStreamWriter out, FormatStack fstack, Comment comment)
This will handle printing of aComment
.protected void
AbstractXMLOutputProcessor. printComment(java.io.Writer out, FormatStack fstack, Comment comment)
This will handle printing of aComment
.org.w3c.dom.Comment
AbstractDOMOutputProcessor. process(org.w3c.dom.Document basedoc, Format format, Comment comment)
void
AbstractSAXOutputProcessor. process(SAXTarget out, Format format, Comment comment)
void
AbstractStAXEventProcessor. process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)
void
AbstractStAXStreamProcessor. process(javax.xml.stream.XMLStreamWriter out, Format format, Comment comment)
void
AbstractXMLOutputProcessor. process(java.io.Writer out, Format format, Comment comment)
org.w3c.dom.Comment
DOMOutputProcessor. process(org.w3c.dom.Document basedoc, Format format, Comment comment)
This will convert the
using the given DOM Document to create the resulting DOM Comment.Comment
void
SAXOutputProcessor. process(SAXTarget out, Format format, Comment comment)
Print out a
.Comment
void
StAXEventProcessor. process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)
Print out a
.Comment
void
StAXStreamProcessor. process(javax.xml.stream.XMLStreamWriter out, Format format, Comment comment)
Print out a
.Comment
void
XMLOutputProcessor. process(java.io.Writer out, Format format, Comment comment)
Print out a
.Comment
-