public final class AndDependencyFilter extends Object implements DependencyFilter
AND. The resulting filter
accepts a given dependency node if and only if all constituent filters accept it.| Constructor and Description |
|---|
AndDependencyFilter(Collection<DependencyFilter> filters)
Creates a new filter from the specified filters.
|
AndDependencyFilter(DependencyFilter... filters)
Creates a new filter from the specified filters.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
accept(DependencyNode node,
List<DependencyNode> parents)
Indicates whether the specified dependency node shall be included or excluded.
|
boolean |
equals(Object obj) |
int |
hashCode() |
static DependencyFilter |
newInstance(DependencyFilter filter1,
DependencyFilter filter2)
Creates a new filter from the specified filters.
|
public AndDependencyFilter(DependencyFilter... filters)
newInstance(DependencyFilter, DependencyFilter)
if any of the input filters might be null.filters - The filters to combine, may be null but must not contain null elements.public AndDependencyFilter(Collection<DependencyFilter> filters)
filters - The filters to combine, may be null but must not contain null elements.public static DependencyFilter newInstance(DependencyFilter filter1, DependencyFilter filter2)
filter1 - The first filter to combine, may be null.filter2 - The second filter to combine, may be null.null if both filter were null.public boolean accept(DependencyNode node, List<DependencyNode> parents)
DependencyFilteraccept in interface DependencyFilternode - The dependency node to filter, must not be null.parents - The (read-only) chain of parent nodes that leads to the node to be filtered, must not be
null. Iterating this (possibly empty) list walks up the dependency graph towards the root
node, i.e. the immediate parent node (if any) is the first node in the list. The size of the list also
denotes the zero-based depth of the filtered node.true to include the dependency node, false to exclude it.Copyright © 2010-2014 The Eclipse Foundation. All Rights Reserved.