517ad0e06fafd2dbf6fb74a86b3ebb46db3c9329
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / actions / name / ChangeConceptRelationAction.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.Taxon;
18 import eu.etaxonomy.cdm.model.taxon.TaxonRelationshipType;
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.ChangeConceptRelationOperation;
24 import eu.etaxonomy.taxeditor.operations.name.CreateConceptRelationOperation;
25
26 /**
27 * @author n.hoffmann
28 * @created 03.02.2009
29 * @version 1.0
30 */
31 public class ChangeConceptRelationAction extends Action {
32
33 private static final Logger logger = Logger
34 .getLogger(ChangeConceptRelationAction.class);
35
36 private static String text = "Change concept relation";
37 private static ImageDescriptor image = TaxEditorPlugin.getDefault()
38 .getImageRegistry().getDescriptor(ITaxEditorConstants.CONCEPT_ICON);
39
40 private Taxon relatedTaxon;
41
42 private Taxon taxon;
43
44 private TaxonRelationshipType taxonRelationshipType;
45
46 private ChangeConceptRelationAction(){
47 super(text, image);
48 }
49
50 public ChangeConceptRelationAction(Taxon taxon, Taxon relatedTaxon,
51 TaxonRelationshipType taxonRelationshipType) {
52 this();
53 this.setText(taxonRelationshipType.getLabel());
54 this.taxon = taxon;
55 this.relatedTaxon = relatedTaxon;
56 this.taxonRelationshipType = taxonRelationshipType;
57 }
58
59 public void run() {
60 IUndoableOperation operation = new ChangeConceptRelationOperation(
61 "Create concept relation '" + taxonRelationshipType.getLabel() + "'",
62 EditorController.getUndoContext(taxon), taxon, relatedTaxon, taxonRelationshipType);
63
64 GlobalController.executeOperation(operation);
65 }
66 }