automated build configuration is on its way
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / SaveTaxonHandler.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.editor.handler;
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
17 import eu.etaxonomy.taxeditor.editor.EditorUtil;
18 import eu.etaxonomy.taxeditor.editor.MultiPageTaxonEditor;
19
20 /**
21 * <p>SaveTaxonHandler class.</p>
22 *
23 * @author n.hoffmann
24 * @created 23.03.2009
25 * @version 1.0
26 */
27 public class SaveTaxonHandler extends AbstractHandler {
28 private static final Logger logger = Logger
29 .getLogger(SaveTaxonHandler.class);
30
31 /* (non-Javadoc)
32 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
33 */
34 /** {@inheritDoc} */
35 public Object execute(ExecutionEvent event) throws ExecutionException {
36
37 MultiPageTaxonEditor editor = EditorUtil.getActiveMultiPageTaxonEditor();
38
39 return EditorUtil.getActivePage().saveEditor(editor, false);
40
41 }
42 }