All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class oracle.xml.parser.v2.XMLPI

java.lang.Object
   |
   +----oracle.xml.parser.v2.XMLNode
           |
           +----oracle.xml.parser.v2.CharData
                   |
                   +----oracle.xml.parser.v2.XMLPI

public class XMLPI
extends CharData
implements ProcessingInstruction, Serializable
This class implements the DOM Processing Instruction interface.

See Also:
ProcessingInstruction, NodeFactory, setNodeFactory

Constructor Index

 o XMLPI(String, String)
Creates a new ProcessingInstruction node with the given target and the data.

Method Index

 o getTarget()
Returns the target of this PI.

Constructors

 o XMLPI
 public XMLPI(String target,
              String data)
Creates a new ProcessingInstruction node with the given target and the data.

Parameters:
target - The target of this PI
data - The content of this PI

Methods

 o getTarget
 public String getTarget()
Returns the target of this PI. XML defines this as the first token following markup that begins the processing instruction.

Returns:
The target of the PI.

All Packages  Class Hierarchy  This Package  Previous  Next  Index