Project

General

Profile

« Previous | Next » 

Revision 55936b8f

Added by Andreas Müller almost 6 years ago

fix #6943 add zoological in-authors to TaxonName

View differences:

cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/name/IZoologicalName.java
8 8
*/
9 9
package eu.etaxonomy.cdm.model.name;
10 10

  
11
import eu.etaxonomy.cdm.model.agent.TeamOrPersonBase;
12

  
11 13
/**
12 14
 * TaxonName interface for animals.
13 15
 * <P>
......
66 68
     */
67 69
    public void setPublicationYear(Integer publicationYear);
68 70

  
71
    /**
72
     * @return the zoological in author of current combination
73
     * according to ICZN Recommendation 51E.
74
     * @see https://dev.e-taxonomy.eu/redmine/issues/6943
75
     */
76
    public TeamOrPersonBase<?> getInCombinationAuthorship();
77
    /**
78
     * @param the zoological in author of current combination
79
     * according to ICZN Recommendation 51E.
80
     * @see https://dev.e-taxonomy.eu/redmine/issues/6943
81
     */
82
    public void setInCombinationAuthorship(TeamOrPersonBase<?> inCombinationAuthorship);
83

  
84
    /**
85
     * @return the zoological in author of original combination
86
     * according to ICZN Recommendation 51E.
87
     * @see https://dev.e-taxonomy.eu/redmine/issues/6943
88
     */
89
    public TeamOrPersonBase<?> getInBasionymAuthorship();
90

  
91
    /**
92
     * @param the zoological in author of original combination
93
     * according to ICZN Recommendation 51E.
94
     * @see https://dev.e-taxonomy.eu/redmine/issues/6943
95
     */
96
    public void setInBasionymAuthorship(TeamOrPersonBase<?> inBasionymAuthorship);
97

  
98

  
99

  
69 100
}

Also available in: Unified diff