Inheritance diagram for org::jdom::ProcessingInstruction:
Public Member Functions | |
ProcessingInstruction (String target, Map data) | |
ProcessingInstruction (String target, String data) | |
ProcessingInstruction | setTarget (String newTarget) |
String | getValue () |
String | getTarget () |
String | getData () |
List | getPseudoAttributeNames () |
ProcessingInstruction | setData (String data) |
ProcessingInstruction | setData (Map data) |
String | getPseudoAttributeValue (String name) |
ProcessingInstruction | setPseudoAttribute (String name, String value) |
boolean | removePseudoAttribute (String name) |
String | toString () |
Object | clone () |
Protected Member Functions | |
ProcessingInstruction () | |
Protected Attributes | |
String | target |
String | rawData |
Map | mapData |
Jason Hunter
Steven Gould
|
Default, no-args constructor for implementations to use if needed. |
|
This will create a new
|
|
This will create a new
|
|
This will return a clone of this
Reimplemented from org::jdom::Content. |
|
This will return the raw data from all instructions.
|
|
This will return a
|
|
This will return the value for a specific name/value pair on the PI. If no such pair is found for this PI, null is returned.
|
|
This will retrieve the target of the PI.
|
|
Returns the XPath 1.0 string value of this element, which is the data of this PI.
Implements org::jdom::Content. |
|
This will remove the pseudo attribute with the specified name.
|
|
This will set the name/value pairs within the passed
|
|
This will set the raw data for the PI.
|
|
This will set a pseudo attribute with the given name and value. If the PI data is not already in a pseudo-attribute format, this will replace the existing data.
|
|
This will set the target for the PI.
|
|
This returns a
|
|
The data for the PI in name/value pairs |
|
The data for the PI as a String |
|
The target of the PI |