Project

General

Profile

Download (1.41 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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

    
10
package eu.etaxonomy.taxeditor.remote.handler;
11

    
12
import javax.inject.Named;
13

    
14
import org.eclipse.e4.core.di.annotations.Execute;
15
import org.eclipse.e4.ui.services.IServiceConstants;
16
import org.eclipse.e4.ui.workbench.modeling.ESelectionService;
17
import org.eclipse.jface.viewers.StructuredSelection;
18
import org.eclipse.swt.SWT;
19
import org.eclipse.swt.widgets.Shell;
20

    
21
import eu.etaxonomy.taxeditor.event.EventUtility;
22
import eu.etaxonomy.taxeditor.event.WorkbenchEventConstants;
23
import eu.etaxonomy.taxeditor.store.CdmStore;
24
import eu.etaxonomy.taxeditor.remote.ui.RemotingLoginDialog;
25
import eu.etaxonomy.taxeditor.remoting.source.ICdmRemoteSource;
26

    
27
/**
28
 * @author pplitzner
29
 * @date 10.10.2017
30
 */
31
public class ReconnectHandlerE4 {
32

    
33
    @Execute
34
    public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell, ESelectionService selService) {
35

    
36
		RemotingLoginDialog loginDialog = new RemotingLoginDialog(shell,
37
		        SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
38

    
39
		loginDialog.open((ICdmRemoteSource) CdmStore.getActiveCdmSource(), true, true);
40
		EventUtility.postEvent(WorkbenchEventConstants.RECONNECT, null);
41
		selService.setSelection(new StructuredSelection());
42
	}
43
}
(1-1/3)