Project

General

Profile

Download (1.51 KB) Statistics
| Branch: | Tag: | Revision:
1 8091dec0 n.hoffmann
// $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 2d9a13f7 n.hoffmann
import eu.etaxonomy.taxeditor.editor.view.media.MediaViewPart;
22 8091dec0 n.hoffmann
import eu.etaxonomy.taxeditor.store.internal.TaxeditorStorePlugin;
23
24
/**
25 3be6ef3e n.hoffmann
 * <p>ShowMediaViewHandler class.</p>
26
 *
27 8091dec0 n.hoffmann
 * @author n.hoffmann
28 2d9a13f7 n.hoffmann
 * @created Jun 10, 2010
29 8091dec0 n.hoffmann
 * @version 1.0
30
 */
31 2d9a13f7 n.hoffmann
public class ShowMediaViewHandler extends AbstractHandler  implements IHandler {
32 8091dec0 n.hoffmann
	private static final Logger logger = Logger
33 2d9a13f7 n.hoffmann
			.getLogger(ShowMediaViewHandler.class);
34 8091dec0 n.hoffmann
35
	/* (non-Javadoc)
36
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
37
	 */
38 3be6ef3e n.hoffmann
	/** {@inheritDoc} */
39 8091dec0 n.hoffmann
	public Object execute(ExecutionEvent event) throws ExecutionException {
40
		try {
41
			TaxeditorStorePlugin.getDefault().getWorkbench()
42 2d9a13f7 n.hoffmann
				.getActiveWorkbenchWindow().getActivePage().showView(MediaViewPart.ID, 
43 8091dec0 n.hoffmann
					null, IWorkbenchPage.VIEW_VISIBLE);
44
		} catch (PartInitException e) {
45 729887cf n.hoffmann
			logger.error("Error opening name relationship view.", e);
46 8091dec0 n.hoffmann
		}
47
		return null;
48
	}
49
}