p2izing the editor
[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 static ImageDescriptor image = TaxEditorPlugin.getDefault()
37 .getImageRegistry().getDescriptor(ITaxEditorConstants.CONCEPT_ICON);
38
39 private TaxonRelationshipType taxonRelationshipType;
40
41 public CreateConceptRelationAction(TaxonRelationshipType taxonRelationshipType) {
42 super(text, image);
43 this.taxonRelationshipType = taxonRelationshipType;
44 setText(taxonRelationshipType.getLabel());
45 }
46
47 @Deprecated
48 public void run() {
49 Taxon taxon = EditorController.getActiveEditor().getTaxon();
50
51 IUndoableOperation operation = new CreateConceptRelationOperation(
52 "Create concept relation '" + taxonRelationshipType.getLabel() + "'",
53 EditorController.getUndoContext(taxon), taxon, taxonRelationshipType);
54
55 GlobalController.executeOperation(operation);
56 }
57
58 }