ref #6190 removing svn property place holder in first line of code - java files
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / handler / ShowRemotingLoginWindowHandler.java
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.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.swt.SWT;
17 import org.eclipse.ui.handlers.HandlerUtil;
18
19 import eu.etaxonomy.taxeditor.ui.dialog.RemotingLoginDialog;
20
21 /**
22 *
23 *
24 * @author c.mathew
25 */
26 public class ShowRemotingLoginWindowHandler extends AbstractHandler implements IHandler{
27
28 /* (non-Javadoc)
29 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
30 */
31 /** {@inheritDoc} */
32 @Override
33 public Object execute(ExecutionEvent event) throws ExecutionException {
34
35 RemotingLoginDialog loginDialog = new RemotingLoginDialog(HandlerUtil.getActiveShell(event),
36 SWT.DIALOG_TRIM | SWT.APPLICATION_MODAL);
37 loginDialog.open();
38
39
40 return null;
41
42 }
43 }