p2izing the editor
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / model / ICdmTaxonSetListener.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.model;
11
12 import java.util.Set;
13
14 import eu.etaxonomy.cdm.model.taxon.Taxon;
15
16
17 /**
18 * @author p.ciardelli
19 * @created 18.12.2008
20 * @version 1.0
21 */
22 public interface ICdmTaxonSetListener {
23
24 public void taxaAdded(Set<Taxon> taxa);
25
26 public void taxaRemoved(Set<Taxon> taxa);
27
28 public void taxonMoved(Taxon taxon, Taxon newParentTaxon);
29
30 }