JavaScript API Reference for Oracle ADF Faces
org.w3c.dom.core
Class ProcessingInstruction
org.ecmascript.object.Object
   |
   +--org.w3c.dom.core.Node
         |
         +--org.w3c.dom.core.ProcessingInstruction
public abstract class ProcessingInstruction
extends Node
The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.
Note that this object is implemented and supported by the web browser and results of its use may vary.
Field Summary
 | 
public String | 
data 
- 
The content of this processing instruction. 
 
 
 | 
public String | 
target 
- 
The target of this processing instruction. 
 
 
 | 
Fields inherited from org.w3c.dom.core.Node
 | 
ATTRIBUTE_NODE, attributes, CDATA_SECTION_NODE, childNodes, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, firstChild, lastChild, localName, namespaceURI, nextSibling, nodeName, nodeType, nodeValue, NOTATION_NODE, ownerDocument, parentNode, prefix, previousSibling, PROCESSING_INSTRUCTION_NODE, TEXT_NODE | 
public String data 
The content of this processing instruction. This is from the first non white space character after the target to the character immediately preceding the ?>.
This is a readonly attribute.
 
public String target 
The target of this processing instruction. XML defines this as being the first token following the markup that begins the processing instruction.
This is a readonly attribute.
 
Generated on 2013.04.22 20:17 UTC
Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.