Project

General

Profile

« Previous | Next » 

Revision 9accb14e

Added by Katja Luther about 3 years ago

add new class openDistributionPerAreaStatusAdminWizardHandler

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/handler/e4/OpenDistributionPerAreaStatusAdminWizardHandler.java
1
/**
2
* Copyright (C) 2018 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.e4;
10

  
11
import javax.inject.Named;
12

  
13
import org.eclipse.e4.core.di.annotations.Execute;
14
import org.eclipse.e4.ui.services.IServiceConstants;
15
import org.eclipse.jface.wizard.WizardDialog;
16
import org.eclipse.swt.widgets.Shell;
17

  
18
import eu.etaxonomy.taxeditor.preference.wizard.AvailableDistributionPerAreaStatusWizard;
19

  
20
/**
21
 * @author k.luther
22
 * @since 19.11.2018
23
 *
24
 */
25
public class OpenDistributionPerAreaStatusAdminWizardHandler {
26
    String commandID = "eu.etaxonomy.taxeditor.handler.e4.OpenDistributionPerAreaStatusAdminWizardHandler";
27

  
28
    @Execute
29
    public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell) {
30

  
31
        AvailableDistributionPerAreaStatusWizard wizard = new AvailableDistributionPerAreaStatusWizard(true);
32

  
33
        WizardDialog dialog = new WizardDialog(shell,
34
                wizard);
35

  
36
        dialog.open();
37
    }
38
}

Also available in: Unified diff