Lines Matching defs:temporary

7452      * result of this request will have the specified temporary value. However,
7453 * because specifying an arbitrary temporary state may not be implementable
7464 * @param temporary true if the focus change is temporary,
7466 * more information on temporary focus changes see the
7477 protected boolean requestFocus(boolean temporary) {
7478 return requestFocusHelper(temporary, true);
7481 boolean requestFocus(boolean temporary, CausedFocusEvent.Cause cause) {
7482 return requestFocusHelper(temporary, true, cause);
7568 * result of this request will have the specified temporary value. However,
7569 * because specifying an arbitrary temporary state may not be implementable
7579 * @param temporary true if the focus change is temporary,
7581 * more information on temporary focus changes see the
7593 protected boolean requestFocusInWindow(boolean temporary) {
7594 return requestFocusHelper(temporary, false);
7597 boolean requestFocusInWindow(boolean temporary, CausedFocusEvent.Cause cause) {
7598 return requestFocusHelper(temporary, false, cause);
7601 final boolean requestFocusHelper(boolean temporary,
7603 return requestFocusHelper(temporary, focusedWindowChangeAllowed, CausedFocusEvent.Cause.UNKNOWN);
7606 final boolean requestFocusHelper(boolean temporary,
7610 if (!isRequestFocusAccepted(temporary, focusedWindowChangeAllowed, cause)) {
7651 (this, temporary, focusedWindowChangeAllowed, time, cause);
7666 private boolean isRequestFocusAccepted(boolean temporary,
7718 // has got temporary focus lost and then on component which is
7730 temporary,
7746 boolean temporary, boolean focusedWindowChangeAllowed,