Merge branch 'release/5.19.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / ITaxonBaseDetailSection.java
1 package eu.etaxonomy.taxeditor.ui.section;
2
3 import eu.etaxonomy.cdm.model.taxon.TaxonBase;
4
5 /**
6 * <p>ITaxonDetailSection interface.</p>
7 *
8 * @author n.hoffmann
9 */
10 public interface ITaxonBaseDetailSection{
11
12 /**
13 * <p>setTaxon</p>
14 *
15 * @param taxon a {@link eu.etaxonomy.cdm.model.taxon.TaxonBase} object.
16 */
17 public abstract void setTaxonBase(TaxonBase<?> taxon);
18
19 public abstract TaxonBase<?> getTaxonBase();
20 }