Home | History | Annotate | Download | only in scroll

Lines Matching defs:predicate

27 import io.appium.droiddriver.finders.Predicate;
44 protected final Predicate<? super UiElement> predicate;
51 protected Getter(Predicate<? super UiElement> predicate) {
52 this.predicate = predicate;
62 UiElement sentinel = getSentinel(container.getChildren(predicate));
143 * Decorates a {@link Getter} by adding another {@link Predicate}.
148 public MorePredicateGetter(Getter original, Predicate<? super UiElement> extraPredicate) {
149 super(Predicates.allOf(original.predicate, extraPredicate));
160 return predicate.toString() + " " + original;