Class BasicItemFilter
- java.lang.Object
-
- net.sf.basedb.util.overview.filter.BasicItemFilter
-
public class BasicItemFilter extends Object implements Filter<Node>
A filter implementation that matches against the item that is attached to nodes. It will evaluate to true for all nodes that has the same item as the reference item.- Version:
- 2.10
- Author:
- Nicklas
- Last modified
- $Date: 2009-02-05 14:39:25 +0100 (to, 05 feb 2009) $
-
-
Constructor Summary
Constructors Constructor Description BasicItemFilter(BasicItem item)
Create a filter that finds nodes that has the given item attached to it.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
evaluate(Node node)
Evaluate if the given object should pass the filter or not.
-
-
-
Constructor Detail
-
BasicItemFilter
public BasicItemFilter(BasicItem item)
Create a filter that finds nodes that has the given item attached to it.- Parameters:
item
- The item to look for
-
-