org.apache.batik.dom
Class AbstractProcessingInstruction
java.lang.Object
|
+--org.apache.batik.dom.AbstractNode
|
+--org.apache.batik.dom.AbstractChildNode
|
+--org.apache.batik.dom.AbstractProcessingInstruction
- All Implemented Interfaces:
- EventTarget, ExtendedNode, Node, NodeEventTarget, ProcessingInstruction, java.io.Serializable
- Direct Known Subclasses:
- GenericProcessingInstruction, StyleSheetProcessingInstruction
- public abstract class AbstractProcessingInstruction
- extends AbstractChildNode
- implements ProcessingInstruction
This class implements the ProcessingInstruction
interface.
- See Also:
- Serialized Form
|
Field Summary |
protected java.lang.String |
data
The data. |
| Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
| Methods inherited from class org.apache.batik.dom.AbstractNode |
addEventListener, appendChild, checkChildType, cloneNode, createDOMException, dispatchEvent, fireDOMCharacterDataModifiedEvent, fireDOMNodeInsertedIntoDocumentEvent, fireDOMNodeRemovedFromDocumentEvent, getAttributes, getChildNodes, getCurrentDocument, getEventSupport, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getOwnerDocument, getParentNodeEventTarget, getPrefix, hasAttributes, hasChildNodes, insertBefore, isSupported, newNode, normalize, removeChild, removeEventListener, replaceChild, setNodeName, setOwnerDocument, setPrefix, setSpecified |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.w3c.dom.Node |
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, hasAttributes, hasChildNodes, insertBefore, isSupported, normalize, removeChild, replaceChild, setPrefix |
data
protected java.lang.String data
- The data.
AbstractProcessingInstruction
public AbstractProcessingInstruction()
getNodeName
public java.lang.String getNodeName()
- DOM: Implements
Node.getNodeName().
- Specified by:
getNodeName in interface Node
- Returns:
ProcessingInstruction.getTarget().
getNodeType
public short getNodeType()
- DOM: Implements
Node.getNodeType().
- Specified by:
getNodeType in interface Node
- Returns:
Node.PROCESSING_INSTRUCTION_NODE
getNodeValue
public java.lang.String getNodeValue()
throws DOMException
- DOM: Implements
Node.getNodeValue().
- Specified by:
getNodeValue in interface Node- Overrides:
getNodeValue in class AbstractNode
- Returns:
getData().
setNodeValue
public void setNodeValue(java.lang.String nodeValue)
throws DOMException
- DOM: Implements
Node.setNodeValue(String).
- Specified by:
setNodeValue in interface Node- Overrides:
setNodeValue in class AbstractNode
- Returns:
setData(String).
getData
public java.lang.String getData()
- DOM: Implements
ProcessingInstruction.getData().
- Specified by:
getData in interface ProcessingInstruction
- Returns:
data.
setData
public void setData(java.lang.String data)
throws DOMException
- DOM: Implements
ProcessingInstruction.setData(String).
- Specified by:
setData in interface ProcessingInstruction
export
protected Node export(Node n,
AbstractDocument d)
- Exports this node to the given document.
- Overrides:
export in class AbstractNode
deepExport
protected Node deepExport(Node n,
AbstractDocument d)
- Deeply exports this node to the given document.
- Overrides:
deepExport in class AbstractNode
copyInto
protected Node copyInto(Node n)
- Copy the fields of the current node into the given node.
- Overrides:
copyInto in class AbstractNode
- Parameters:
n - a node of the type of this.
deepCopyInto
protected Node deepCopyInto(Node n)
- Deeply copy the fields of the current node into the given node.
- Overrides:
deepCopyInto in class AbstractNode
- Parameters:
n - a node of the type of this.
Copyright © 2002 Apache Software Foundation. All Rights Reserved.