use of org.whole.lang.e4.ui.jobs.TextualFunctionRunnable in project whole by wholeplatform.
the class AbstractModelTextAction method run.
@Override
public void run() {
ESelectionService selectionService = getContext().get(ESelectionService.class);
IBindingManager bm = (IBindingManager) selectionService.getSelection();
ISynchronizableRunnable runnable = new TextualFunctionRunnable(getContext(), bm, getText(), getBehaviorUri());
runnable.syncExec(3000);
}
Aggregations