|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ProcessingInstruction | |
org.jdom | |
org.jdom.output |
Uses of ProcessingInstruction in org.jdom |
Methods in org.jdom that return ProcessingInstruction | |
ProcessingInstruction |
Document.getProcessingInstruction(java.lang.String target)
This returns the first processing instruction for this Document located at the document level
(outside the root element) for the supplied target, or null if
no such processing instruction exists. |
ProcessingInstruction |
ProcessingInstruction.setData(java.lang.String data)
This will set the raw data for the PI. |
ProcessingInstruction |
ProcessingInstruction.setData(java.util.Map data)
This will set the name/value pairs within the passed Map as the pairs for the data of
this PI. |
ProcessingInstruction |
ProcessingInstruction.setValue(java.lang.String name,
java.lang.String value)
This will set the value for the specified name/value pair. |
Methods in org.jdom with parameters of type ProcessingInstruction | |
Document |
Document.addContent(ProcessingInstruction pi)
Adds the specified PI to the document. |
Document |
Document.addProcessingInstruction(ProcessingInstruction pi)
Deprecated. use addContent(ProcessingInstruction) instead |
boolean |
Document.removeProcessingInstruction(ProcessingInstruction pi)
Deprecated. use doc.getMixedContent().remove(PI) instead |
Element |
Element.addContent(ProcessingInstruction pi)
This adds a processing instruction as content to this element. |
Element |
Element.addChild(ProcessingInstruction pi)
Deprecated. Use addContent(ProcessingInstruction) instead |
boolean |
Element.removeChild(ProcessingInstruction pi)
Deprecated. Use getMixedContent().remove(pi) instead |
boolean |
Element.removeContent(ProcessingInstruction pi)
Deprecated. Use getMixedContent().remove(pi) instead |
Uses of ProcessingInstruction in org.jdom.output |
Methods in org.jdom.output with parameters of type ProcessingInstruction | |
void |
XMLOutputter.output(ProcessingInstruction processingInstruction,
java.io.Writer out)
Print out a
|
void |
XMLOutputter.output(ProcessingInstruction processingInstruction,
java.io.OutputStream out)
Print out a
|
protected void |
XMLOutputter.printProcessingInstruction(ProcessingInstruction pi,
java.io.Writer out,
int indentLevel)
This will write the processing instruction to the specified writer. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |