Massive refactoring of the methodology in former class UiUtils
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / actions / ui / ChangeTaxonToSynonymAction.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.actions.ui;
11
12 import org.apache.log4j.Logger;
13 import org.eclipse.core.commands.ExecutionException;
14 import org.eclipse.core.commands.operations.IUndoableOperation;
15 import org.eclipse.jface.action.Action;
16 import org.eclipse.jface.resource.ImageDescriptor;
17
18 import eu.etaxonomy.cdm.model.taxon.Taxon;
19 import eu.etaxonomy.taxeditor.ITaxEditorConstants;
20 import eu.etaxonomy.taxeditor.TaxEditorPlugin;
21 import eu.etaxonomy.taxeditor.controller.GlobalController;
22 import eu.etaxonomy.taxeditor.operations.ChangeTaxonToSynonymOperation;
23
24 /**
25 * @author p.ciardelli
26 * @created 26.05.2008
27 * @version 1.0
28 */
29 public class ChangeTaxonToSynonymAction extends Action {
30 private static final Logger logger = Logger
31 .getLogger(ChangeTaxonToSynonymAction.class);
32
33 private static String text = "Change this taxon to a synonym";
34 private ImageDescriptor image = TaxEditorPlugin.getDefault()
35 .getImageRegistry().getDescriptor(ITaxEditorConstants.TAXON_TO_SYNONYM_ICON);
36
37 private Taxon taxon;
38
39 private ChangeTaxonToSynonymAction() {
40 super(text);
41 setImageDescriptor(image);
42 }
43
44 public ChangeTaxonToSynonymAction(Taxon taxon) {
45 this();
46 this.taxon = taxon;
47 }
48
49 public void run() {
50 IUndoableOperation operation = new ChangeTaxonToSynonymOperation(getText(),
51 GlobalController.getWorkbenchUndoContext(), taxon);
52
53 GlobalController.executeOperation(operation);
54 }
55 }