switched plugin version to 2.1
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / handlers / ExportHandler.java
1 /**
2 * Copyright (C) 2009 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.handlers;
11
12 import org.apache.log4j.Logger;
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.jface.dialogs.MessageDialog;
18 import org.eclipse.swt.widgets.FileDialog;
19
20 import eu.etaxonomy.taxeditor.controller.GlobalController;
21
22 /**
23 * @author p.ciardelli
24 * @created 20.03.2009
25 * @version 1.0
26 */
27 public class ExportHandler extends AbstractHandler implements IHandler {
28 private static Logger logger = Logger.getLogger(ExportHandler.class);
29
30 /* (non-Javadoc)
31 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
32 */
33 public Object execute(ExecutionEvent event) throws ExecutionException {
34
35 FileDialog dialog = new FileDialog(GlobalController.getShell());
36 dialog.setFileName("export.xml");
37 String filePath = dialog.open();
38
39 if (filePath != null) {
40 MessageDialog.openInformation(GlobalController.getShell(),
41 "Not yet implemented", "CDM datasource export not yet implemented.");
42 }
43
44 return null;
45 }
46 }