Project

General

Profile

Download (1.21 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2019 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
 * Interface for classes which have a rule considered field.
13
 *
14
 * @author a.mueller
15
 * @since 12.08.2019
16
 */
17
public interface IRuleConsidered {
18

    
19
    /**
20
     * Returns the nomenclatural code rule considered (that is the
21
     * article/note/recommendation in the nomenclatural code ruling
22
     * the  taxon name(s) of this nomenclatural status).
23
     * The considered rule gives the reason why the
24
     * {@link NomenclaturalStatusType nomenclatural status type} has been
25
     * assigned to the {@link TaxonName taxon name(s)}.
26
     *
27
     * @see #getCodeEdition()
28
     */
29
    String getRuleConsidered();
30

    
31
    /**
32
     * @see  #getRuleConsidered()
33
     */
34
    void setRuleConsidered(String ruleConsidered);
35

    
36
    /**
37
     * The {@link NomenclaturalCodeEdition code edition} for the {@link #getText() rule considered}.
38
     */
39
    NomenclaturalCodeEdition getCodeEdition();
40

    
41
    void setCodeEdition(NomenclaturalCodeEdition codeEdition);
42

    
43
}
(10-10/39)