org.apache.batik.dom
public abstract class AbstractChildNode extends AbstractNode
| Field Summary | |
|---|---|
| protected Node | nextSibling
Returns the next sibling. |
| protected Node | parentNode
The parent node of this node. |
| protected Node | previousSibling
The previous sibling. |
| Method Summary | |
|---|---|
| Node | getNextSibling()
DOM: Implements org.w3c.dom.Node#getNextSibling(). |
| Node | getParentNode()
DOM: Implements org.w3c.dom.Node#getParentNode(). |
| Node | getPreviousSibling()
DOM: Implements org.w3c.dom.Node#getPreviousSibling(). |
| void | setNextSibling(Node v)
Sets the node immediately following this node. |
| void | setParentNode(Node v)
Sets the parent node. |
| void | setPreviousSibling(Node v)
Sets the node immediately preceding this node. |
Returns: nextSibling.
Returns: parentNode
Returns: previousSibling.