/* * Copyright (C) 2006-2016 DLR, Germany * * All rights reserved * * http://www.rcenvironment.de/ */ package de.rcenvironment.core.gui.workflow.verify; import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionException; import org.eclipse.jface.wizard.IWizard; import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.ui.PlatformUI; /** * Opens the {@link ComponentResultVerificationWizard}. * * @author Doreen Seider */ public class OpenComponentResultVerificationWizardHandler extends AbstractHandler { @Override public Object execute(ExecutionEvent event) throws ExecutionException { IWizard wizard = new ComponentResultVerificationWizard(); WizardDialog wizardDialog = new ComponentResultVerificationWizardDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), wizard); wizardDialog.open(); return null; } }