org.apache.batik.css.engine
Interface CSSNavigableNode


public interface CSSNavigableNode

An interface for DOM classes that can be navigated for CSS selector matching and cascade computation.

Version:
$Id: CSSNavigableNode.java 1733416 2016-03-03 07:07:13Z gadams $
Author:
Cameron McCormack

Method Summary
 Node getCSSFirstChild()
          Returns the CSS first child node of this node.
 Node getCSSLastChild()
          Returns the CSS last child of this node.
 Node getCSSNextSibling()
          Returns the CSS next sibling node of this node.
 Node getCSSParentNode()
          Returns the CSS parent node of this node.
 Node getCSSPreviousSibling()
          Returns the CSS previous sibling node of this node.
 boolean isHiddenFromSelectors()
          Returns whether this node is the root of a (conceptual) hidden tree that selectors will not work across.
 

Method Detail

getCSSParentNode

Node getCSSParentNode()
Returns the CSS parent node of this node.


getCSSPreviousSibling

Node getCSSPreviousSibling()
Returns the CSS previous sibling node of this node.


getCSSNextSibling

Node getCSSNextSibling()
Returns the CSS next sibling node of this node.


getCSSFirstChild

Node getCSSFirstChild()
Returns the CSS first child node of this node.


getCSSLastChild

Node getCSSLastChild()
Returns the CSS last child of this node.


isHiddenFromSelectors

boolean isHiddenFromSelectors()
Returns whether this node is the root of a (conceptual) hidden tree that selectors will not work across.



Copyright © 2000–2017 Apache Software Foundation. All rights reserved.