| |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ProcessingInstruction | |
org.jdom | |
org.jdom.output |
Uses of ProcessingInstruction in org.jdom |
Constructors in org.jdom with parameters of type ProcessingInstruction | |
IllegalAddException.IllegalAddException(Document base, ProcessingInstruction added, String reason) This will create an Exception indicating
that the addition of the ProcessingInstruction
supplied as content to the supplied document is not allowed. | |
IllegalAddException.IllegalAddException(Element base, ProcessingInstruction added, String reason) This will create an Exception indicating
that the addition of the ProcessingInstruction
supplied as content to the supplied element is not allowed. |
Methods in org.jdom that return ProcessingInstruction | |
ProcessingInstruction | Document.getProcessingInstruction(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(String data) This will set the raw data for the PI. |
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.setValue(String name, 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. |
boolean | Document.removeContent(ProcessingInstruction pi) This removes the specified ProcessingInstruction . |
Element | Element.addContent(ProcessingInstruction pi) This adds a processing instruction as content to this element. |
boolean | Element.removeContent(ProcessingInstruction pi) This removes the specified ProcessingInstruction . |
Uses of ProcessingInstruction in org.jdom.output |
Methods in org.jdom.output with parameters of type ProcessingInstruction | |
void | XMLOutputter.output(ProcessingInstruction pi, OutputStream out) Print out a ProcessingInstruction
|
void | XMLOutputter.output(ProcessingInstruction pi, Writer out) Print out a ProcessingInstruction
|
| |||||||||
PREV NEXT | FRAMES NO FRAMES |