Moving editor sources back into trunk
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / handler / ShowDataSourceViewHandler.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.apache.log4j.Logger;
14 import org.eclipse.core.commands.AbstractHandler;
15 import org.eclipse.core.commands.ExecutionEvent;
16 import org.eclipse.core.commands.ExecutionException;
17 import org.eclipse.core.commands.IHandler;
18 import org.eclipse.ui.IWorkbenchPage;
19 import org.eclipse.ui.PartInitException;
20
21 import eu.etaxonomy.taxeditor.store.datasource.view.CdmDataSourceView;
22 import eu.etaxonomy.taxeditor.store.internal.TaxeditorStorePlugin;
23
24 /**
25 * @author n.hoffmann
26 * @created 14.04.2009
27 * @version 1.0
28 */
29 public class ShowDataSourceViewHandler extends AbstractHandler implements IHandler {
30 private static final Logger logger = Logger
31 .getLogger(ShowDataSourceViewHandler.class);
32
33
34 public Object execute(ExecutionEvent event) throws ExecutionException {
35 try {
36 TaxeditorStorePlugin.getDefault().getWorkbench()
37 .getActiveWorkbenchWindow().getActivePage().showView(CdmDataSourceView.ID,
38 null, IWorkbenchPage.VIEW_VISIBLE);
39 } catch (PartInitException e) {
40 logger.error("Error opening data source view.", e);
41 }
42 return null;
43 }
44
45 }