AsyncCallback<GetTranslationMemoryResult> _callback =
(AsyncCallback<GetTranslationMemoryResult>) callback;
Scheduler.get().scheduleDeferred(
new DummyGetTranslationMemoryCommand(_action, _callback));
} else if (action instanceof GetGlossary) {
final GetGlossary _action = (GetGlossary) action;
AsyncCallback<GetGlossaryResult> _callback =
(AsyncCallback<GetGlossaryResult>) callback;
Scheduler.get().scheduleDeferred(
new DummyGetGlossaryCommand(_action, _callback));
} else if (action instanceof UpdateTransUnit) {