JDOM 1.0 | ||
Frames | No Frames |
Methods with parameter type org.jdom.ProcessingInstruction | |
void | Print out a . |
void | Print out a . |
String | Return a string representing a PI. |
void | This will handle printing of processing instructions. |
Methods with return type org.jdom.ProcessingInstruction | |
ProcessingInstruction | DefaultJDOMFactory.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 | UncheckedJDOMFactory.processingInstruction(String target, Map data) This will create a new ProcessingInstruction
with the specified target and data. |
ProcessingInstruction | DefaultJDOMFactory.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 | UncheckedJDOMFactory.processingInstruction(String target, String data) This will create a new ProcessingInstruction
with the specified target and 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. |