ProcessingInstruction extends Node
Each ProcessingInstruction has:
Target, a string
Data, a string
plus the usual properties of any Node
Pseudo-attributes are not specifically supported
package nu.xom;
public class ProcessingInstruction extends Node{
public ProcessingInstruction(String target, String data) {
public ProcessingInstruction(ProcessingInstruction instruction)
public final String getTarget();
public void setTarget(String target);
protected void checkTarget(String target);
public final String getValue();
public void setValue(String data);
protected void checkValue(String data);
public final Node getChild(int i);
public final int getChildCount();
public final Node copy();
public final String toXML();
public final String toString();
}