* @param data the content of the processing instruction
* @throws org.xml.sax.SAXException never
*/
public void processingInstruction(final String target, final String data)
throws org.xml.sax.SAXException {
ProcessingInstruction pi = new ProcessingInstruction(target, data);
_currentNode.addChild(pi);
}