use of net.heartsome.cat.database.ui.tm.wizard.TmDbManagerImportWizard in project translationstudio8 by heartsome.
the class ImportTmxHandler method execute.
/**
* (non-Javadoc)
* @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
*/
public Object execute(ExecutionEvent event) throws ExecutionException {
IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindow(event);
TmDbManagerImportWizard wizard = new TmDbManagerImportWizard();
ImportTmxWizardDialog dlg = new ImportTmxWizardDialog(window.getShell(), wizard);
dlg.open();
return null;
}
Aggregations