Package org.jdesktop.swingx.decorator
Class HighlightPredicate.AndHighlightPredicate
- java.lang.Object
-
- org.jdesktop.swingx.decorator.HighlightPredicate.AndHighlightPredicate
-
- All Implemented Interfaces:
HighlightPredicate
- Enclosing interface:
- HighlightPredicate
public static class HighlightPredicate.AndHighlightPredicate extends Object implements HighlightPredicate
Ands a list of predicates.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jdesktop.swingx.decorator.HighlightPredicate
HighlightPredicate.AndHighlightPredicate, HighlightPredicate.ColumnHighlightPredicate, HighlightPredicate.DepthHighlightPredicate, HighlightPredicate.EqualsHighlightPredicate, HighlightPredicate.IdentifierHighlightPredicate, HighlightPredicate.NotHighlightPredicate, HighlightPredicate.OrHighlightPredicate, HighlightPredicate.RowGroupHighlightPredicate, HighlightPredicate.TypeHighlightPredicate
-
-
Field Summary
-
Fields inherited from interface org.jdesktop.swingx.decorator.HighlightPredicate
ALWAYS, BIG_DECIMAL_NEGATIVE, EDITABLE, EMPTY_INTEGER_ARRAY, EMPTY_OBJECT_ARRAY, EMPTY_PREDICATE_ARRAY, EVEN, HAS_FOCUS, INTEGER_NEGATIVE, IS_FOLDER, IS_LEAF, IS_SELECTED, IS_TEXT_TRUNCATED, NEVER, ODD, READ_ONLY, ROLLOVER_CELL, ROLLOVER_COLUMN, ROLLOVER_ROW
-
-
Constructor Summary
Constructors Constructor Description AndHighlightPredicate(Collection<HighlightPredicate> list)
Instantiates a predicate which ANDs all contained predicates.AndHighlightPredicate(HighlightPredicate... predicate)
Instantiates a predicate which ands all given predicates.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HighlightPredicate[]
getHighlightPredicates()
boolean
isHighlighted(Component renderer, ComponentAdapter adapter)
Returns a boolean to indicate whether the component should be highlighted.
-
-
-
Constructor Detail
-
AndHighlightPredicate
public AndHighlightPredicate(HighlightPredicate... predicate)
Instantiates a predicate which ands all given predicates.- Parameters:
predicate
- zero or more not null predicates to and- Throws:
NullPointerException
- if the predicate is null
-
AndHighlightPredicate
public AndHighlightPredicate(Collection<HighlightPredicate> list)
Instantiates a predicate which ANDs all contained predicates.- Parameters:
list
- a collection with zero or more not null predicates to AND- Throws:
NullPointerException
- if the collection is null
-
-
Method Detail
-
isHighlighted
public boolean isHighlighted(Component renderer, ComponentAdapter adapter)
Returns a boolean to indicate whether the component should be highlighted.Note: both parameters should be considered strictly read-only! Implemented to return false if any of the contained predicates is false or if there are no predicates.
- Specified by:
isHighlighted
in interfaceHighlightPredicate
- Parameters:
renderer
- the cell renderer component that is to be decorated, must not be nulladapter
- the ComponentAdapter for this decorate operation, most not be null- Returns:
- a boolean to indicate whether the component should be highlighted.
-
getHighlightPredicates
public HighlightPredicate[] getHighlightPredicates()
- Returns:
- the contained HighlightPredicates.
-
-