Project

General

Profile

Download (422 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
 */
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
}
(9-9/9)