performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / handler / ShowErrorViewHandler.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.eclipse.core.commands.AbstractHandler;
14 import org.eclipse.core.commands.ExecutionEvent;
15 import org.eclipse.core.commands.ExecutionException;
16 import org.eclipse.ui.IWorkbenchPage;
17 import org.eclipse.ui.PartInitException;
18
19 import eu.etaxonomy.taxeditor.store.StoreUtil;
20 import eu.etaxonomy.taxeditor.store.internal.TaxeditorStorePlugin;
21
22 /**
23 * <p>ShowErrorViewHandler class.</p>
24 *
25 * @author n.hoffmann
26 * @created Oct 13, 2010
27 * @version 1.0
28 */
29 public class ShowErrorViewHandler extends AbstractHandler {
30
31 /* (non-Javadoc)
32 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
33 */
34 /** {@inheritDoc} */
35 @Override
36 public Object execute(ExecutionEvent arg0) throws ExecutionException {
37 try {
38 TaxeditorStorePlugin.getDefault().getWorkbench()
39 .getActiveWorkbenchWindow().getActivePage().showView("org.eclipse.pde.runtime.LogView",
40 null, IWorkbenchPage.VIEW_VISIBLE);
41 } catch (PartInitException e) {
42 StoreUtil.error(this.getClass(), e);
43 }
44 return null;
45 }
46 }