org.apache.batik.dom

Interface ExtendedNode

public interface ExtendedNode extends Node, NodeEventTarget

This interface provides an access to the non DOM methods implemented by all the nodes in this implementation.
Method Summary
booleanisReadonly()
Tests whether this node is readonly.
voidsetNextSibling(Node n)
Sets the node immediately following this node.
voidsetNodeName(String v)
Sets the name of this node.
voidsetOwnerDocument(Document doc)
Sets the owner document of this node.
voidsetParentNode(Node v)
Sets the parent node.
voidsetPreviousSibling(Node n)
Sets the node immediately preceding this node.
voidsetReadonly(boolean v)
Sets this node readonly attribute.
voidsetSpecified(boolean v)
Sets the value of the specified attribute.

Method Detail

isReadonly

public boolean isReadonly()
Tests whether this node is readonly.

setNextSibling

public void setNextSibling(Node n)
Sets the node immediately following this node.

setNodeName

public void setNodeName(String v)
Sets the name of this node.

setOwnerDocument

public void setOwnerDocument(Document doc)
Sets the owner document of this node.

setParentNode

public void setParentNode(Node v)
Sets the parent node.

setPreviousSibling

public void setPreviousSibling(Node n)
Sets the node immediately preceding this node.

setReadonly

public void setReadonly(boolean v)
Sets this node readonly attribute.

setSpecified

public void setSpecified(boolean v)
Sets the value of the specified attribute. This method only applies to Attr objects.
Copyright B) 2007 Apache Software Foundation. All Rights Reserved.