Project

General

Profile

Download (462 Bytes) Statistics
| Branch: | Tag: | Revision:
1 f211dd28 n.hoffmann
package eu.etaxonomy.taxeditor.ui.section;
2 729887cf n.hoffmann
3
import eu.etaxonomy.cdm.model.taxon.TaxonBase;
4
5 3be6ef3e n.hoffmann
/**
6
 * <p>ITaxonDetailSection interface.</p>
7
 *
8
 * @author n.hoffmann
9
 * @version $Id: $
10
 */
11 6747dad6 n.hoffmann
public interface ITaxonBaseDetailSection{
12 729887cf n.hoffmann
13 3be6ef3e n.hoffmann
	/**
14
	 * <p>setTaxon</p>
15
	 *
16
	 * @param taxon a {@link eu.etaxonomy.cdm.model.taxon.TaxonBase} object.
17
	 */
18 6747dad6 n.hoffmann
	public abstract void setTaxonBase(TaxonBase taxon);
19 729887cf n.hoffmann
20 6747dad6 n.hoffmann
	/**
21
	 * 
22
	 * @return
23
	 */
24
	public abstract TaxonBase getTaxonBase();
25 3be6ef3e n.hoffmann
}