performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / ShowDetailsViewHandler.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.core.commands.IHandler;
18 import org.eclipse.ui.IWorkbenchPage;
19 import org.eclipse.ui.PartInitException;
20
21 import eu.etaxonomy.taxeditor.editor.view.detail.DetailsViewPart;
22 import eu.etaxonomy.taxeditor.store.internal.TaxeditorStorePlugin;
23
24 /**
25 * <p>ShowDetailsViewHandler class.</p>
26 *
27 * @author n.hoffmann
28 * @created 05.06.2009
29 * @version 1.0
30 */
31 public class ShowDetailsViewHandler extends AbstractHandler implements
32 IHandler {
33 private static final Logger logger = Logger
34 .getLogger(ShowDetailsViewHandler.class);
35
36 /* (non-Javadoc)
37 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
38 */
39 /** {@inheritDoc} */
40 public Object execute(ExecutionEvent event) throws ExecutionException {
41 try {
42 TaxeditorStorePlugin.getDefault().getWorkbench()
43 .getActiveWorkbenchWindow().getActivePage().showView(DetailsViewPart.ID,
44 null, IWorkbenchPage.VIEW_VISIBLE);
45 } catch (PartInitException e) {
46 logger.error("Error opening entity details view.", e);
47 }
48 return null;
49 }
50 }