processingInstruction

processingInstruction(target: String;
                      data    String);

The processingInstruction event method of the JadeXMLParser class receives notification of a processing instruction.

The processingInstruction event method parameters are listed in the following table.

Parameter Description
target The processing instruction target.
data The processing instruction data or null ("") if none was supplied. The data does not include any whitespace separating it from the target.

The parser invokes this event method (if implemented) for each processing instruction that it locates.

Processing instructions can occur before or after the root element.