om.SaxDocumentHandler.processingInstruction

Processes a processing instruction.

Syntax

processingInstruction(
   name STRING,
   data STRING )
  1. name is the name of the processing instruction (token after <?).
  2. data is the string in the processing instruction tag.

Usage

The processingInstruction() method processes a processing instruction with the SAX interface.

A processing instruction appears in an XML formatted text as:

<?name data ?>