org.apache.batik.dom.xbl
Interface NodeXBL

All Known Implementing Classes:
AbstractNode

public interface NodeXBL

Interface implemented by all nodes that support XBL. Eventually will move to org.w3c.dom.xbl (or some such package).


Method Summary
 Element getXblBoundElement()
          Get the bound element whose shadow tree this current node resides in.
 NodeList getXblChildNodes()
          Get the list of child nodes of this node in the fully flattened tree.
 NodeList getXblDefinitions()
          Get the xbl:definition elements currently binding this element.
 Node getXblFirstChild()
          Get the first child node of this node in the fully flattened tree.
 Element getXblFirstElementChild()
          Get the first element child of this node in the fully flattened tree.
 Node getXblLastChild()
          Get the last child node of this node in the fully flattened tree.
 Element getXblLastElementChild()
          Get the last element child of this node in the fully flattened tree.
 Element getXblNextElementSibling()
          Get the first element that follows the current node in the xblParentNode's xblChildNodes list.
 Node getXblNextSibling()
          Get the node which directly follows the current node in the xblParentNode's xblChildNodes list.
 Node getXblParentNode()
          Get the parent of this node in the fully flattened tree.
 Element getXblPreviousElementSibling()
          Get the first element that precedes the current node in the xblParentNode's xblChildNodes list.
 Node getXblPreviousSibling()
          Get the node which directly precedes the current node in the xblParentNode's xblChildNodes list.
 NodeList getXblScopedChildNodes()
          Get the list of child nodes of this node in the fully flattened tree that are within the same shadow scope.
 Element getXblShadowTree()
          Get the shadow tree of this node.
 

Method Detail

getXblParentNode

public Node getXblParentNode()
Get the parent of this node in the fully flattened tree.


getXblChildNodes

public NodeList getXblChildNodes()
Get the list of child nodes of this node in the fully flattened tree.


getXblScopedChildNodes

public NodeList getXblScopedChildNodes()
Get the list of child nodes of this node in the fully flattened tree that are within the same shadow scope.


getXblFirstChild

public Node getXblFirstChild()
Get the first child node of this node in the fully flattened tree.


getXblLastChild

public Node getXblLastChild()
Get the last child node of this node in the fully flattened tree.


getXblPreviousSibling

public Node getXblPreviousSibling()
Get the node which directly precedes the current node in the xblParentNode's xblChildNodes list.


getXblNextSibling

public Node getXblNextSibling()
Get the node which directly follows the current node in the xblParentNode's xblChildNodes list.


getXblFirstElementChild

public Element getXblFirstElementChild()
Get the first element child of this node in the fully flattened tree.


getXblLastElementChild

public Element getXblLastElementChild()
Get the last element child of this node in the fully flattened tree.


getXblPreviousElementSibling

public Element getXblPreviousElementSibling()
Get the first element that precedes the current node in the xblParentNode's xblChildNodes list.


getXblNextElementSibling

public Element getXblNextElementSibling()
Get the first element that follows the current node in the xblParentNode's xblChildNodes list.


getXblBoundElement

public Element getXblBoundElement()
Get the bound element whose shadow tree this current node resides in.


getXblShadowTree

public Element getXblShadowTree()
Get the shadow tree of this node.


getXblDefinitions

public NodeList getXblDefinitions()
Get the xbl:definition elements currently binding this element.



Copyright © 2009 Apache Software Foundation. All Rights Reserved.