org.htmlparser
Interface NodeFilter

All Superinterfaces:
java.lang.Cloneable, java.io.Serializable
All Known Implementing Classes:
AndFilter, CssSelectorNodeFilter, Filter, HasAttributeFilter, HasChildFilter, HasParentFilter, HasSiblingFilter, IsEqualFilter, LinkRegexFilter, LinkStringFilter, NodeClassFilter, NotFilter, OrFilter, RegexFilter, StringFilter, TagNameFilter

public interface NodeFilter
extends java.io.Serializable, java.lang.Cloneable

Implement this interface to select particular nodes.


Method Summary
 boolean accept(Node node)
          Predicate to determine whether or not to keep the given node.
 

Method Detail

accept

public boolean accept(Node node)
Predicate to determine whether or not to keep the given node. The behaviour based on this outcome is determined by the context in which it is called. It may lead to the node being added to a list or printed out. See the calling routine for details.

Parameters:
node - The node to test.
Returns:
true if the node is to be kept, false if it is to be discarded.