Timer
209210211212213214215216217218219
if (resizeWidget.isAttached()) { onHandleAttach(); } delay = new DelayedTask() { @Override public void onExecute() { sync(); }
363364365366367368369370371372373
* * @param autoValidate true to validate on each key press */ public void setAutoValidate(boolean autoValidate) { if (!this.autoValidate && autoValidate) { validationTask = new DelayedTask() { @Override public void onExecute() { doAutoValidate(); } };
651652653654655656657658659660661
} public void setTypeAhead(boolean typeAhead) { this.typeAhead = typeAhead; if (typeAhead && taTask == null) { taTask = new DelayedTask() { @Override public void onExecute() { onTypeAhead(lastParent); } };
802803804805806807808809810811812
return true; } }; eventPreview.setAutoHide(false); dqTask = new DelayedTask() { @Override public void onExecute() { doQuery(lastContext, lastParent, lastValueUpdater, lastValue, getText(lastParent), false); }
204205206207208209210211212213214
401402403404405406407408409410411
restrict(parent); } }); if (navKeyTask == null) { navKeyTask = new DelayedTask() { @Override public void onExecute() { listView.setSelectOnOver(true); }
779780781782783784785786787788789
968969970971972973974975976977978
371372373374375376377378379380381
* * @param autoValidate {@code true} to validate on each key press */ public void setAutoValidate(boolean autoValidate) { if (!this.autoValidate && autoValidate) { validationTask = new DelayedTask() { @Override public void onExecute() { doAutoValidate(); } };
471472473474475476477478479480481
protected boolean loadLiveStore(int offset) { if (GXTLogConfiguration.loggingIsEnabled()) { logger.finest("loadLiveStore() offset: " + offset); } if (loaderTask == null) { loaderTask = new DelayedTask() { @Override public void onExecute() { doLoad(); } };