Package | Description |
---|---|
org.jdom |
Classes to represent the components of an XML document.
|
org.jdom.output |
Classes to output JDOM documents to various destinations.
|
Modifier and Type | Method and Description |
---|---|
ProcessingInstruction |
UncheckedJDOMFactory.processingInstruction(String target,
Map data) |
ProcessingInstruction |
JDOMFactory.processingInstruction(String target,
Map data)
This will create a new
ProcessingInstruction
with the specified target and data. |
ProcessingInstruction |
DefaultJDOMFactory.processingInstruction(String target,
Map data) |
ProcessingInstruction |
UncheckedJDOMFactory.processingInstruction(String target,
String data) |
ProcessingInstruction |
JDOMFactory.processingInstruction(String target,
String data)
This will create a new
ProcessingInstruction
with the specified target and data. |
ProcessingInstruction |
DefaultJDOMFactory.processingInstruction(String target,
String data) |
ProcessingInstruction |
ProcessingInstruction.setData(Map data)
This will set the name/value pairs within the passed
Map as the pairs for the data of
this PI. |
ProcessingInstruction |
ProcessingInstruction.setData(String data)
This will set the raw data for the PI.
|
ProcessingInstruction |
ProcessingInstruction.setPseudoAttribute(String name,
String value)
This will set a pseudo attribute with the given name and value.
|
ProcessingInstruction |
ProcessingInstruction.setTarget(String newTarget)
This will set the target for the PI.
|
Modifier and Type | Method and Description |
---|---|
void |
XMLOutputter.output(ProcessingInstruction pi,
OutputStream out)
Print out a
. |
void |
XMLOutputter.output(ProcessingInstruction pi,
Writer out)
Print out a
. |
String |
XMLOutputter.outputString(ProcessingInstruction pi)
Return a string representing a PI.
|
protected void |
XMLOutputter.printProcessingInstruction(Writer out,
ProcessingInstruction pi)
This will handle printing of processing instructions.
|
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.