merging in latest changes from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / handler / ShowLoginWindowHandler.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.handler;
12
13 import org.eclipse.core.commands.AbstractHandler;
14 import org.eclipse.core.commands.ExecutionEvent;
15 import org.eclipse.core.commands.ExecutionException;
16 import org.eclipse.core.commands.IHandler;
17 import org.eclipse.ui.handlers.HandlerUtil;
18
19 import eu.etaxonomy.taxeditor.ui.dialog.LoginDialog;
20
21 /**
22 * <p>ShowLoginWindowHandler class.</p>
23 *
24 * @author n.hoffmann
25 * @created Aug 7, 2009
26 * @version 1.0
27 */
28 public class ShowLoginWindowHandler extends AbstractHandler implements IHandler{
29
30 /* (non-Javadoc)
31 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
32 */
33 /** {@inheritDoc} */
34 public Object execute(ExecutionEvent event) throws ExecutionException {
35
36 LoginDialog loginDialog = new LoginDialog(HandlerUtil.getActiveShell(event));
37 loginDialog.open();
38
39 return null;
40
41 }
42
43
44
45 }