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 |
---|---|
ProcessingInstruction |
ProcessingInstruction.clone() |
ProcessingInstruction |
ProcessingInstruction.detach() |
ProcessingInstruction |
UncheckedJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target) |
ProcessingInstruction |
JDOMFactory.processingInstruction(int line,
int col,
java.lang.String target)
This will create a new
ProcessingInstruction
with the specified target and no data. |
ProcessingInstruction |
DefaultJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target) |
ProcessingInstruction |
SlimJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target) |
ProcessingInstruction |
UncheckedJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.util.Map<java.lang.String,java.lang.String> data) |
ProcessingInstruction |
JDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.util.Map<java.lang.String,java.lang.String> data)
This will create a new
ProcessingInstruction
with the specified target and data. |
ProcessingInstruction |
DefaultJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.util.Map<java.lang.String,java.lang.String> data) |
ProcessingInstruction |
SlimJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.util.Map<java.lang.String,java.lang.String> data) |
ProcessingInstruction |
UncheckedJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.lang.String data) |
ProcessingInstruction |
JDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.lang.String data)
This will create a new
ProcessingInstruction
with the specified target and data. |
ProcessingInstruction |
DefaultJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.lang.String data) |
ProcessingInstruction |
SlimJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.lang.String data) |
ProcessingInstruction |
JDOMFactory.processingInstruction(java.lang.String target)
This will create a new
ProcessingInstruction
with the specified target and no data. |
ProcessingInstruction |
DefaultJDOMFactory.processingInstruction(java.lang.String target) |
ProcessingInstruction |
JDOMFactory.processingInstruction(java.lang.String target,
java.util.Map<java.lang.String,java.lang.String> data)
This will create a new
ProcessingInstruction
with the specified target and data. |
ProcessingInstruction |
DefaultJDOMFactory.processingInstruction(java.lang.String target,
java.util.Map<java.lang.String,java.lang.String> data) |
ProcessingInstruction |
JDOMFactory.processingInstruction(java.lang.String target,
java.lang.String data)
This will create a new
ProcessingInstruction
with the specified target and data. |
ProcessingInstruction |
DefaultJDOMFactory.processingInstruction(java.lang.String target,
java.lang.String data) |
ProcessingInstruction |
ProcessingInstruction.setData(java.util.Map<java.lang.String,java.lang.String> data)
This will set the name/value pairs within the passed
Map as the pairs for the data of
this PI. |
ProcessingInstruction |
ProcessingInstruction.setData(java.lang.String data)
This will set the raw data for the PI.
|
protected ProcessingInstruction |
ProcessingInstruction.setParent(Parent parent) |
ProcessingInstruction |
ProcessingInstruction.setPseudoAttribute(java.lang.String name,
java.lang.String value)
This will set a pseudo attribute with the given name and value.
|
ProcessingInstruction |
ProcessingInstruction.setTarget(java.lang.String newTarget)
This will set the target for the PI.
|
Modifier and Type | Method and Description |
---|---|
static Filter<ProcessingInstruction> |
Filters.processinginstruction()
Return a Filter that matches any
ProcessingInstruction data. |
Modifier and Type | Method and Description |
---|---|
ProcessingInstruction |
DOMBuilder.build(org.w3c.dom.ProcessingInstruction pi)
This will build a JDOM ProcessingInstruction from an existing DOM ProcessingInstruction
|
Modifier and Type | Class and Description |
---|---|
class |
LocatedProcessingInstruction
An XML processing instruction.
|
Modifier and Type | Method and Description |
---|---|
ProcessingInstruction |
LocatedJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target) |
ProcessingInstruction |
LocatedJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.util.Map<java.lang.String,java.lang.String> data) |
ProcessingInstruction |
LocatedJDOMFactory.processingInstruction(int line,
int col,
java.lang.String target,
java.lang.String data) |
Modifier and Type | Method and Description |
---|---|
org.w3c.dom.ProcessingInstruction |
DOMOutputter.output(org.w3c.dom.Document basedoc,
ProcessingInstruction pi)
This converts the JDOM
ProcessingInstruction parameter to a
DOM ProcessingInstruction, returning the DOM version. |
org.w3c.dom.ProcessingInstruction |
DOMOutputter.output(ProcessingInstruction pi)
This converts the JDOM
ProcessingInstruction parameter to a
DOM ProcessingInstruction, returning the DOM version. |
void |
XMLOutputter.output(ProcessingInstruction pi,
java.io.OutputStream out)
Print out a
. |
void |
XMLOutputter.output(ProcessingInstruction pi,
java.io.Writer out)
Print out a
. |
void |
StAXEventOutputter.output(ProcessingInstruction pi,
javax.xml.stream.util.XMLEventConsumer out)
Print out a
. |
void |
StAXStreamOutputter.output(ProcessingInstruction pi,
javax.xml.stream.XMLStreamWriter out)
Print out a
. |
java.lang.String |
XMLOutputter.outputString(ProcessingInstruction pi)
Return a string representing a
ProcessingInstruction . |
Modifier and Type | Method and Description |
---|---|
protected org.w3c.dom.ProcessingInstruction |
AbstractDOMOutputProcessor.printProcessingInstruction(FormatStack fstack,
org.w3c.dom.Document basedoc,
ProcessingInstruction pi)
This will handle printing of a
ProcessingInstruction . |
protected void |
AbstractSAXOutputProcessor.printProcessingInstruction(SAXTarget out,
FormatStack fstack,
ProcessingInstruction pi)
This will handle printing of a
ProcessingInstruction . |
protected void |
AbstractXMLOutputProcessor.printProcessingInstruction(java.io.Writer out,
FormatStack fstack,
ProcessingInstruction pi)
This will handle printing of a
ProcessingInstruction . |
protected void |
AbstractStAXEventProcessor.printProcessingInstruction(javax.xml.stream.util.XMLEventConsumer out,
FormatStack fstack,
javax.xml.stream.XMLEventFactory eventfactory,
ProcessingInstruction pi)
This will handle printing of a
ProcessingInstruction . |
protected void |
AbstractStAXStreamProcessor.printProcessingInstruction(javax.xml.stream.XMLStreamWriter out,
FormatStack fstack,
ProcessingInstruction pi)
This will handle printing of a
ProcessingInstruction . |
org.w3c.dom.ProcessingInstruction |
DOMOutputProcessor.process(org.w3c.dom.Document basedoc,
Format format,
ProcessingInstruction pi)
This will convert the
using
the given DOM Document to create the resulting DOM ProcessingInstruction. |
org.w3c.dom.ProcessingInstruction |
AbstractDOMOutputProcessor.process(org.w3c.dom.Document basedoc,
Format format,
ProcessingInstruction pi) |
void |
SAXOutputProcessor.process(SAXTarget out,
Format format,
ProcessingInstruction pi)
Print out a
. |
void |
AbstractSAXOutputProcessor.process(SAXTarget out,
Format format,
ProcessingInstruction pi) |
void |
XMLOutputProcessor.process(java.io.Writer out,
Format format,
ProcessingInstruction pi)
Print out a
. |
void |
AbstractXMLOutputProcessor.process(java.io.Writer out,
Format format,
ProcessingInstruction pi) |
void |
AbstractStAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
ProcessingInstruction pi) |
void |
StAXEventProcessor.process(javax.xml.stream.util.XMLEventConsumer out,
Format format,
javax.xml.stream.XMLEventFactory eventfactory,
ProcessingInstruction pi)
Print out a
. |
void |
StAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
ProcessingInstruction pi)
Print out a
. |
void |
AbstractStAXStreamProcessor.process(javax.xml.stream.XMLStreamWriter out,
Format format,
ProcessingInstruction pi) |
Copyright © 2021 Jason Hunter, Brett McLaughlin. All Rights Reserved.