om.SaxDocumentHandler.processingInstruction
Processes a processing instruction.
Syntax
processingInstruction(
name STRING,
data STRING )
- name is the name of the processing instruction (token after
<?
). - 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 ?>