org.dom4j.tree
public abstract class AbstractProcessingInstruction extends AbstractNode implements ProcessingInstruction
AbstractProcessingInstruction
is an abstract base class for
tree implementors to use for implementation inheritence.
Version: $Revision: 1.17 $
Constructor Summary | |
---|---|
AbstractProcessingInstruction() |
Method Summary | |
---|---|
void | accept(Visitor visitor) |
String | asXML() |
String | getName() |
short | getNodeType() |
String | getPath(Element context) |
String | getUniquePath(Element context) |
protected Map | parseValues(String text)
Parses the raw data of PI as a |
boolean | removeValue(String name) |
void | setName(String name) |
void | setValue(String name, String value) |
void | setValues(Map data) |
String | toString() |
protected String | toString(Map values) This will convert the Map to a string representation. |
void | write(Writer writer) |
Parses the raw data of PI as a Map
.
Parameters: text
String
PI data to parse
Returns: DOCUMENT ME!
This will convert the Map to a string representation.
Parameters: values
is a Map
of PI data to convert
Returns: DOCUMENT ME!