Home | History | Annotate | Download | only in finders

Lines Matching defs:predicate

27  * {@link #predicate}.
30 protected final Predicate<? super UiElement> predicate;
32 public MatchFinder(Predicate<? super UiElement> predicate) {
33 if (predicate == null) {
34 this.predicate = Predicates.any();
36 this.predicate = predicate;
42 return predicate.toString();
70 return predicate.apply(element);