Project

General

Profile

Download (1.11 KB) Statistics
| Branch: | Tag: | Revision:
1 e6fb562e n.hoffmann
/**
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.handler;
11
12
import org.eclipse.core.commands.AbstractHandler;
13
import org.eclipse.core.commands.ExecutionEvent;
14
import org.eclipse.core.commands.ExecutionException;
15
import org.eclipse.core.commands.IHandler;
16
import org.eclipse.ui.handlers.HandlerUtil;
17
18 78222507 n.hoffmann
import eu.etaxonomy.taxeditor.ui.dialog.LoginDialog;
19 e6fb562e n.hoffmann
20
/**
21 3be6ef3e n.hoffmann
 * <p>ShowLoginWindowHandler class.</p>
22
 *
23 e6fb562e n.hoffmann
 * @author n.hoffmann
24
 * @created Aug 7, 2009
25
 * @version 1.0
26
 */
27
public class ShowLoginWindowHandler extends AbstractHandler implements IHandler{
28
29
	/* (non-Javadoc)
30
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
31
	 */
32 3be6ef3e n.hoffmann
	/** {@inheritDoc} */
33 e6fb562e n.hoffmann
	public Object execute(ExecutionEvent event) throws ExecutionException {
34
35
		LoginDialog loginDialog = new LoginDialog(HandlerUtil.getActiveShell(event));
36
		loginDialog.open();
37
		
38
		return null;
39
		
40
	}
41
42
	
43
	
44
}