Project

General

Profile

Download (1.22 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2014 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.handler;
10

    
11
import org.eclipse.core.commands.AbstractHandler;
12
import org.eclipse.core.commands.ExecutionEvent;
13
import org.eclipse.core.commands.ExecutionException;
14
import org.eclipse.jface.wizard.WizardDialog;
15

    
16
import eu.etaxonomy.taxeditor.preference.wizard.AvailableDistributionWizard;
17
import eu.etaxonomy.taxeditor.store.StoreUtil;
18

    
19
/**
20
 * @author a.oppermann
21
 * @date 21.07.2014
22
 *
23
 */
24
public class OpenDistributionEditorWizardHandler  extends AbstractHandler{
25

    
26
        String commandID = "eu.etaxonomy.taxeditor.store.open.OpenDistributionEditorWizardHandler";
27

    
28
        @Override
29
        public Object execute(ExecutionEvent event) throws ExecutionException {
30
            AvailableDistributionWizard availableDistributionWizard = new AvailableDistributionWizard();
31
            WizardDialog dialog = new WizardDialog(StoreUtil.getShell(),
32
                    availableDistributionWizard);
33

    
34
            dialog.open();
35
            return null;
36
        }
37

    
38
    }
(3-3/11)