ref #6190 removing svn property place holder in first line of code - java files
[taxeditor.git] / eu.etaxonomy.taxeditor.application / src / main / java / eu / etaxonomy / taxeditor / SaveHandler.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor;
11
12 import org.apache.log4j.Logger;
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.IEditorPart;
17 import org.eclipse.ui.handlers.HandlerUtil;
18
19 /**
20 * Now handled entirely by native save action.
21 *
22 * @author p.ciardelli
23 * @created 04.09.2009
24 * @version 1.0
25 * @see ApplicationActionBarAdvisor
26 */
27 public class SaveHandler extends AbstractHandler {
28 private static final Logger logger = Logger.getLogger(SaveHandler.class);
29
30 /* (non-Javadoc)
31 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
32 */
33 /** {@inheritDoc} */
34 public Object execute(ExecutionEvent event) throws ExecutionException {
35 IEditorPart editor = HandlerUtil.getActiveEditor(event);
36 if (editor != null) {
37 HandlerUtil.getActiveWorkbenchWindow(event).getActivePage().saveEditor(editor, false);
38 }
39 return null;
40 }
41 }