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