BEA Systems, Inc.

WebLogic Server 6.1 API Reference

weblogic.apache.xerces.dom
Class ProcessingInstructionImpl

java.lang.Object
  |
  +--weblogic.apache.xerces.dom.NodeImpl
        |
        +--weblogic.apache.xerces.dom.ChildNode
              |
              +--weblogic.apache.xerces.dom.CharacterDataImpl
                    |
                    +--weblogic.apache.xerces.dom.ProcessingInstructionImpl
Direct Known Subclasses:
DeferredProcessingInstructionImpl

public class ProcessingInstructionImpl
extends CharacterDataImpl
implements org.w3c.dom.ProcessingInstruction

Processing Instructions (PIs) permit documents to carry processor-specific information alongside their actual content. PIs are most common in XML, but they are supported in HTML as well. This class inherits from CharacterDataImpl to reuse its setNodeValue method.

This class is based on an implementation from the Apache XML Project. In future releases the XML parser, XSLT processor, and associated classes will likely be updated to be based on a later version of the Apache implementations. Since Apache does not guarantee backwards compatibility between versions of their software, we cannot guarantee backwards compatibility of any of the classes contained in the weblogic.apache package or sub-packages.

Version:
 
See Also:
Serialized Form

Field Summary
protected  java.lang.String target
           
 
Fields inherited from class weblogic.apache.xerces.dom.CharacterDataImpl
data
 
Fields inherited from class weblogic.apache.xerces.dom.ChildNode
nextSibling, previousSibling
 
Fields inherited from class weblogic.apache.xerces.dom.NodeImpl
ELEMENT_DEFINITION_NODE, FIRSTCHILD, flags, HASSTRING, IGNORABLEWS, MUTATION_AGGREGATE, MUTATION_ALL, MUTATION_LOCAL, MUTATION_NONE, MUTATIONEVENTS, OWNED, ownerNode, READONLY, SETVALUE, SPECIFIED, SYNCCHILDREN, SYNCDATA, UNNORMALIZED
 
Constructor Summary
ProcessingInstructionImpl(DocumentImpl ownerDoc, java.lang.String target, java.lang.String data)
          Factory constructor.
 
Method Summary
 java.lang.String getData()
          A PI's data content tells the processor what we actually want it to do.
 java.lang.String getNodeName()
          Returns the target
 short getNodeType()
          A short integer indicating what type of node this is.
 java.lang.String getTarget()
          A PI's "target" states what processor channel the PI's data should be directed to.
 void setData(java.lang.String data)
          Change the data content of this PI.
 
Methods inherited from class weblogic.apache.xerces.dom.CharacterDataImpl
appendData, deleteData, getChildNodes, getLength, getNodeValue, insertData, replaceData, setNodeValue, substringData
 
Methods inherited from class weblogic.apache.xerces.dom.ChildNode
cloneNode, getNextSibling, getParentNode, getPreviousSibling
 
Methods inherited from class weblogic.apache.xerces.dom.NodeImpl
addEventListener, appendChild, changed, changes, dispatchEvent, getAttributes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getOwnerDocument, getPrefix, getReadOnly, getUserData, hasAttributes, hasChildNodes, insertBefore, isSupported, item, normalize, removeChild, removeEventListener, replaceChild, setPrefix, setReadOnly, setUserData, synchronizeData, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

target

protected java.lang.String target
Constructor Detail

ProcessingInstructionImpl

public ProcessingInstructionImpl(DocumentImpl ownerDoc,
                                 java.lang.String target,
                                 java.lang.String data)
Factory constructor.
Method Detail

getNodeType

public short getNodeType()
A short integer indicating what type of node this is. The named constants for this value are defined in the org.w3c.dom.Node interface.

Overrides:
getNodeType in class NodeImpl

getNodeName

public java.lang.String getNodeName()
Returns the target

Overrides:
getNodeName in class NodeImpl

getTarget

public java.lang.String getTarget()
A PI's "target" states what processor channel the PI's data should be directed to. It is defined differently in HTML and XML.

In XML, a PI's "target" is the first (whitespace-delimited) token following the " In HTML, target is always null.

Note that getNodeName is aliased to getTarget.

Specified by:
getTarget in interface org.w3c.dom.ProcessingInstruction


getData

public java.lang.String getData()
A PI's data content tells the processor what we actually want it to do. It is defined slightly differently in HTML and XML.

In XML, the data begins with the non-whitespace character immediately after the target -- @see getTarget().

In HTML, the data begins with the character immediately after the "<?" token that begins the PI.

Note that getNodeValue is aliased to getData

Specified by:
getData in interface org.w3c.dom.ProcessingInstruction

Overrides:
getData in class CharacterDataImpl

setData

public void setData(java.lang.String data)
Change the data content of this PI. Note that setData is aliased to setNodeValue.
Specified by:
setData in interface org.w3c.dom.ProcessingInstruction

Throws:
DOMException(NO_MODIFICATION_ALLOWED_ERR) - if node is read-only.
Overrides:
setData in class CharacterDataImpl
See Also:
getData().

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs61

WebLogic classes and methods that do not appear in this reference are not public and are not supported.