package ch.elexis.core.ui.laboratory.commands; import java.util.HashMap; import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.Command; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionException; import org.eclipse.core.commands.ParameterizedCommand; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.IWorkbenchWindow; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.commands.ICommandService; import org.eclipse.ui.handlers.HandlerUtil; import org.eclipse.ui.handlers.IHandlerService; import ch.elexis.core.ui.laboratory.dialogs.EditLabItem; import ch.elexis.data.LabItem; import ch.elexis.data.PersistentObject; public class EditLabItemUi extends AbstractHandler { public static final String COMMANDID = "ch.elexis.labitem.edit"; //$NON-NLS-1$ public static final String PARAMETERID = "ch.elexis.labitem.edit.selected"; //$NON-NLS-1$ @Override public Object execute(ExecutionEvent event) throws ExecutionException{ try { // get the parameter String param = event.getParameter(PARAMETERID); PersistentObject labitem = (PersistentObject) event.getCommand().getParameterType(PARAMETERID) .getValueConverter().convertToObject(param); // create and open the dialog with the parameter Shell parent = HandlerUtil.getActiveShell(event); EditLabItem dialog = new EditLabItem(parent, (LabItem) labitem); dialog.open(); } catch (Exception ex) { throw new RuntimeException(COMMANDID, ex); } return null; } public static void executeWithParams(PersistentObject parameter){ try { // get the command IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow(); ICommandService cmdService = (ICommandService) window.getService(ICommandService.class); Command cmd = cmdService.getCommand(COMMANDID); // create the parameter HashMap<String, Object> param = new HashMap<String, Object>(); param.put(PARAMETERID, parameter); // build the parameterized command ParameterizedCommand pc = ParameterizedCommand.generateCommand(cmd, param); // execute the command IHandlerService handlerService = (IHandlerService) PlatformUI.getWorkbench().getActiveWorkbenchWindow() .getService(IHandlerService.class); handlerService.executeCommand(pc, null); } catch (Exception ex) { throw new RuntimeException(COMMANDID, ex); } } }