Project

General

Profile

Download (1.15 KB) Statistics
| Branch: | Tag: | Revision:
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.store.datasource.handler;
12

    
13
import org.eclipse.core.commands.ExecutionEvent;
14
import org.eclipse.jface.wizard.WizardDialog;
15
import org.eclipse.swt.widgets.Shell;
16
import org.eclipse.ui.handlers.HandlerUtil;
17

    
18
import eu.etaxonomy.taxeditor.store.datasource.wizard.CdmDataSourceWizard;
19

    
20
/**
21
 * @author n.hoffmann
22
 * @created 15.04.2009
23
 * @version 1.0
24
 */
25
public class CreateDataSourceHandler extends AbstractDataSourceHandler {
26

    
27
	/* (non-Javadoc)
28
	 * @see eu.etaxonomy.taxeditor.store.datasource.handler.AbstractDataSourceHandler#specificExecute(org.eclipse.core.commands.ExecutionEvent)
29
	 */
30
	@Override
31
	public Object specificExecute(ExecutionEvent event) {
32
		Shell shell = HandlerUtil.getActiveShell(event);
33
		CdmDataSourceWizard wizard = new CdmDataSourceWizard(null); 
34
		
35
		WizardDialog dialog = new WizardDialog(shell, wizard);
36
	    dialog.open();
37
		
38
		return null;
39
	}
40
}
(3-3/5)