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