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.
|
Modifier and Type | Method and Description |
---|---|
Comment |
Comment.clone() |
Comment |
UncheckedJDOMFactory.comment(int line,
int col,
java.lang.String str) |
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 |
SlimJDOMFactory.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 . |
Modifier and Type | Method and Description |
---|---|
static Filter<Comment> |
Filters.comment()
Return a Filter that matches any
Comment data. |
Modifier and Type | Method and Description |
---|---|
Comment |
DOMBuilder.build(org.w3c.dom.Comment comment)
This will build a JDOM Comment from an existing DOM Comment
|
Modifier and Type | Class and Description |
---|---|
class |
LocatedComment
An XML comment.
|
Modifier and Type | Method and Description |
---|---|
Comment |
LocatedJDOMFactory.comment(int line,
int col,
java.lang.String text) |
Modifier and Type | Method and Description |
---|---|
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
. |
void |
XMLOutputter.output(Comment comment,
java.io.Writer out)
Print out a
. |
void |
StAXEventOutputter.output(Comment comment,
javax.xml.stream.util.XMLEventConsumer out)
Print out a
. |
void |
StAXStreamOutputter.output(Comment comment,
javax.xml.stream.XMLStreamWriter out)
Print out a
. |
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 . |
Modifier and Type | Method and Description |
---|---|
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
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
. |
void |
AbstractSAXOutputProcessor.process(SAXTarget out,
Format format,
Comment comment) |
void |
XMLOutputProcessor.process(java.io.Writer out,
Format format,
Comment comment)
Print out a
. |
void |
AbstractXMLOutputProcessor.process(java.io.Writer out,
Format format,
Comment comment) |
void |
AbstractStAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
Comment comment) |
void |
StAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
Comment comment)
Print out a
. |
void |
StAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
Comment comment)
Print out a
. |
void |
AbstractStAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
Comment comment) |
Copyright © 2021 Jason Hunter, Brett McLaughlin. All Rights Reserved.