Searched refs:checkFocused (Results 1 – 3 of 3) sorted by relevance
26 private final boolean checkFocused; field in KeyAction28 protected KeyAction(long timeoutMillis, boolean checkFocused) { in KeyAction() argument30 this.checkFocused = checkFocused; in KeyAction()34 if (checkFocused && element != null && !element.isFocused()) { in maybeCheckFocused()
48 public TextAction(String text, long timeoutMillis, boolean checkFocused) {49 super(timeoutMillis, checkFocused);
63 public SingleKeyAction(int keyCode, int metaState, long timeoutMillis, boolean checkFocused) { in SingleKeyAction() argument64 super(timeoutMillis, checkFocused); in SingleKeyAction()