791a1f96cf8bd55c13216622529c2440fb32843f
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / actions / name / ChangeSynonymToConceptRelationAction.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.name;
11
12 import org.apache.log4j.Logger;
13 import org.eclipse.core.commands.operations.IUndoableOperation;
14 import org.eclipse.jface.action.Action;
15 import org.eclipse.jface.resource.ImageDescriptor;
16
17 import eu.etaxonomy.cdm.model.taxon.Synonym;
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.EditorController;
22 import eu.etaxonomy.taxeditor.controller.GlobalController;
23 import eu.etaxonomy.taxeditor.operations.name.ChangeSynonymToConceptOperation;
24
25 /**
26 * @author n.hoffmann
27 * @created 02.02.2009
28 * @version 1.0
29 */
30 public class ChangeSynonymToConceptRelationAction extends Action {
31
32
33 private static final Logger logger = Logger
34 .getLogger(ChangeSynonymToConceptRelationAction.class);
35
36 private static String text = "Change synonym to concept relation"; //$NON-NLS-1$
37
38 private static ImageDescriptor image = TaxEditorPlugin.getDefault()
39 .getImageDescriptor(ITaxEditorConstants.CONCEPT_ICON);
40
41 private Synonym synonym;
42
43 private Taxon taxon;
44
45 private ChangeSynonymToConceptRelationAction() {
46 super(text, image);
47 }
48
49 public ChangeSynonymToConceptRelationAction(Taxon taxon, Synonym synonym) {
50 this();
51 this.taxon = taxon;
52 this.synonym = synonym;
53 }
54
55 public void run() {
56 IUndoableOperation operation = new ChangeSynonymToConceptOperation
57 (this.getText(), EditorController.getUndoContext(taxon), taxon, synonym);
58
59 GlobalController.executeOperation(operation);
60 }
61
62 }