Project

General

Profile

Download (1.18 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2016 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.databaseAdmin.wizard.DatabasePreferencesWizard;
17
import eu.etaxonomy.taxeditor.store.StoreUtil;
18

    
19
/**
20
 * @author k.luther
21
 * @date 18.11.2016
22
 *
23
 */
24
public class OpenDatabasePreferencesWizardHandler  extends AbstractHandler{
25

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

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

    
34
        dialog.open();
35

    
36
        return null;
37
    }
38

    
39
}
(1-1/11)