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 CommentComment. clone()CommentDefaultJDOMFactory. comment(int line, int col, java.lang.String text)CommentDefaultJDOMFactory. comment(java.lang.String text)CommentJDOMFactory. comment(int line, int col, java.lang.String text)This creates the comment with the supplied text.CommentJDOMFactory. comment(java.lang.String text)This creates the comment with the supplied text.CommentSlimJDOMFactory. comment(int line, int col, java.lang.String text)CommentUncheckedJDOMFactory. comment(int line, int col, java.lang.String str)CommentComment. detach()protected CommentComment. setParent(Parent parent)CommentComment. 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 anyCommentdata. -
Uses of Comment in org.jdom2.input
Methods in org.jdom2.input that return Comment Modifier and Type Method Description CommentDOMBuilder. 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 classLocatedCommentAn XML comment.Methods in org.jdom2.located that return Comment Modifier and Type Method Description CommentLocatedJDOMFactory. 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.CommentDOMOutputter. output(Comment comment)This converts the JDOMProcessingInstructionparameter to a DOM ProcessingInstruction, returning the DOM version.org.w3c.dom.CommentDOMOutputter. output(org.w3c.dom.Document basedoc, Comment comment)This converts the JDOMProcessingInstructionparameter to a DOM ProcessingInstruction, returning the DOM version.voidStAXEventOutputter. output(Comment comment, javax.xml.stream.util.XMLEventConsumer out)Print out a.CommentvoidStAXStreamOutputter. output(Comment comment, javax.xml.stream.XMLStreamWriter out)Print out a.CommentvoidXMLOutputter. output(Comment comment, java.io.OutputStream out)Print out a.CommentvoidXMLOutputter. output(Comment comment, java.io.Writer out)Print out a.Commentjava.lang.StringXMLOutputter. 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.CommentAbstractDOMOutputProcessor. printComment(FormatStack fstack, org.w3c.dom.Document basedoc, Comment comment)This will handle printing of aComment.protected voidAbstractSAXOutputProcessor. printComment(SAXTarget out, FormatStack fstack, Comment comment)This will handle printing of aComment.protected voidAbstractStAXEventProcessor. printComment(javax.xml.stream.util.XMLEventConsumer out, FormatStack fstack, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)This will handle printing of aComment.protected voidAbstractStAXStreamProcessor. printComment(javax.xml.stream.XMLStreamWriter out, FormatStack fstack, Comment comment)This will handle printing of aComment.protected voidAbstractXMLOutputProcessor. printComment(java.io.Writer out, FormatStack fstack, Comment comment)This will handle printing of aComment.org.w3c.dom.CommentAbstractDOMOutputProcessor. process(org.w3c.dom.Document basedoc, Format format, Comment comment)voidAbstractSAXOutputProcessor. process(SAXTarget out, Format format, Comment comment)voidAbstractStAXEventProcessor. process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)voidAbstractStAXStreamProcessor. process(javax.xml.stream.XMLStreamWriter out, Format format, Comment comment)voidAbstractXMLOutputProcessor. process(java.io.Writer out, Format format, Comment comment)org.w3c.dom.CommentDOMOutputProcessor. process(org.w3c.dom.Document basedoc, Format format, Comment comment)This will convert theusing the given DOM Document to create the resulting DOM Comment.CommentvoidSAXOutputProcessor. process(SAXTarget out, Format format, Comment comment)Print out a.CommentvoidStAXEventProcessor. process(javax.xml.stream.util.XMLEventConsumer out, Format format, javax.xml.stream.XMLEventFactory eventfactory, Comment comment)Print out a.CommentvoidStAXStreamProcessor. process(javax.xml.stream.XMLStreamWriter out, Format format, Comment comment)Print out a.CommentvoidXMLOutputProcessor. process(java.io.Writer out, Format format, Comment comment)Print out a.Comment
-