Project

General

Profile

Download (993 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 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
package eu.etaxonomy.cdm.model.name;
10

    
11
/**
12
 * TaxonName interface for fungi.
13
 *
14
 * @author a.mueller
15
 \* @since 05.05.2017
16
 */
17
public interface IFungusName extends IBotanicalName {
18
      /**
19
      * Returns the boolean value of the flag indicating whether the specimen
20
      * type of <i>this</i> fungi name is asexual (true) or not
21
      * (false). The Article 59 of the ICBN
22
      * permits mycologists to give asexually reproducing fungi (anamorphs)
23
      * separate names from their sexual states (teleomorphs).
24
      *
25
      * @return  the boolean value of the isAnamorphic flag
26
      */
27
     public boolean isAnamorphic();
28

    
29
     /**
30
      * @see  #isAnamorphic()
31
      */
32
     public void setAnamorphic(boolean anamorphic);
33
}
(9-9/36)