Project

General

Profile

Download (806 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 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.view.sessions;
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.swt.SWT;
16
import org.eclipse.swt.widgets.Shell;
17

    
18
/**
19
 * @author pplitzner
20
 * @since Nov 2, 2017
21
 *
22
 */
23
public class InspectSessionHandler {
24

    
25
    @Execute
26
    public void canExecute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell){
27
        InspectSessionsDialog dialog = new InspectSessionsDialog(shell, SWT.NONE);
28
        dialog.open();
29
    }
30
}
(1-1/3)