use of org.whole.lang.e4.ui.jobs.ExecuteSampleModelRunnable in project whole by wholeplatform.
the class E4SampleGraphicalPart method execute.
protected void execute() {
if (behaviorModel == null || selfBindings == null)
return;
else {
ISynchronizableRunnable runnable = new ExecuteSampleModelRunnable(context, behaviorLabel, contextModel, selfBindings, selfModel, bm, behaviorModel);
runnable.asyncExec("Executing " + behaviorLabel + " operation...");
}
}
Aggregations