Added homotypic grouping, drag and drop between groups, parsing of names. Implemented...
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor.prototype2 / src / eu / etaxonomy / taxeditor / prototype2 / controller / ActionDeleteTaxon.java
1 package eu.etaxonomy.taxeditor.prototype2.controller;
2
3 import org.eclipse.jface.action.Action;
4
5 import eu.etaxonomy.cdm.model.taxon.Taxon;
6
7 /**
8 * Delete this taxon from the CDM
9 *
10 * @author p.ciardelli
11 *
12 */
13 public class ActionDeleteTaxon extends Action {
14 Taxon taxon;
15
16 public ActionDeleteTaxon(Taxon taxon) {
17 this.taxon = taxon;
18 }
19
20 public void run() {
21 // Activator.getDefault().getCdmApp().getTaxonService().saveTaxon(taxon);
22 }
23 }