1 package com.atlassian.webdriver.waiter;
2
3 import com.atlassian.annotations.ExperimentalApi;
4 import com.atlassian.webdriver.waiter.webdriver.function.ConditionFunction;
5
6 /**
7 * <strong>WARNING</strong>: This API is still experimental and may be changed between versions.
8 *
9 * @since 2.1.0
10 */
11 @ExperimentalApi
12 public interface Query
13 {
14 ConditionFunction build();
15 }