Project

General

Profile

Download (462 Bytes) Statistics
| Branch: | Tag: | Revision:
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
 * @version $Id: $
10
 */
11
public interface ITaxonBaseDetailSection{
12

    
13
	/**
14
	 * <p>setTaxon</p>
15
	 *
16
	 * @param taxon a {@link eu.etaxonomy.cdm.model.taxon.TaxonBase} object.
17
	 */
18
	public abstract void setTaxonBase(TaxonBase taxon);
19

    
20
	/**
21
	 * 
22
	 * @return
23
	 */
24
	public abstract TaxonBase getTaxonBase();
25
}
(8-8/8)