Lines Matching refs:blocker
123 * Current modal blocker or null.
127 private LWWindowPeer blocker;
459 public void setModalBlocked(Dialog blocker, boolean blocked) {
461 if(blocked && blocker.getPeer() instanceof LWWindowPeer) {
462 this.blocker = (LWWindowPeer)blocker.getPeer();
464 this.blocker = null;
1309 if (blocker != null) {
1311 focusLog.finest("the window is blocked by " + blocker);
1348 * Returns the foremost modal blocker of this window, or null.
1352 LWWindowPeer blocker = this.blocker;
1353 if (blocker == null) {
1356 while (blocker.blocker != null) {
1357 blocker = blocker.blocker;
1359 return blocker;