Project

General

Profile

Download (1.51 KB) Statistics
| Branch: | Tag: | Revision:
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.media.MediaViewPart;
22
import eu.etaxonomy.taxeditor.store.internal.TaxeditorStorePlugin;
23

    
24
/**
25
 * <p>ShowMediaViewHandler class.</p>
26
 *
27
 * @author n.hoffmann
28
 * @created Jun 10, 2010
29
 * @version 1.0
30
 */
31
public class ShowMediaViewHandler extends AbstractHandler  implements IHandler {
32
	private static final Logger logger = Logger
33
			.getLogger(ShowMediaViewHandler.class);
34

    
35
	/* (non-Javadoc)
36
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
37
	 */
38
	/** {@inheritDoc} */
39
	public Object execute(ExecutionEvent event) throws ExecutionException {
40
		try {
41
			TaxeditorStorePlugin.getDefault().getWorkbench()
42
				.getActiveWorkbenchWindow().getActivePage().showView(MediaViewPart.ID, 
43
					null, IWorkbenchPage.VIEW_VISIBLE);
44
		} catch (PartInitException e) {
45
			logger.error("Error opening name relationship view.", e);
46
		}
47
		return null;
48
	}
49
}
(6-6/8)