Project

General

Profile

Download (1.53 KB) 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
 * The taxon name interface for viral taxa. The scientific name will be stored
13
 * as a string (consisting eventually of several words even combined also with
14
 * non alphabetical characters) in the inherited {@link eu.etaxonomy.cdm.model.common.IdentifiableEntity#setTitleCache(String) titleCache} attribute.
15
 * Classification has no influence on the names of viral taxon names and no
16
 * viral taxon must be taxonomically included in another viral taxon with
17
 * higher rank. For examples see ICTVdb:
18
 * "http://www.ncbi.nlm.nih.gov/ICTVdb/Ictv/vn_indxA.htm"
19
 * <p>
20
 * For the 2017 version of the ICVCN see https://talk.ictvonline.org/information/w/ictv-information/383/ictv-code
21
 *
22
 * <P>
23
 * This class corresponds to: NameViral according to the ABCD schema.
24
 *
25
 * @author a.mueller
26
 * @since 26.01.2017
27
 *
28
 */
29
public interface IViralName extends ITaxonNameBase {
30

    
31
    /**
32
     * Returns the accepted acronym (an assigned abbreviation) string for <i>this</i>
33
     * viral taxon name. For instance PCV stays for Peanut Clump Virus.
34
     *
35
     * @return  the string containing the accepted acronym of <i>this</i> viral taxon name
36
     */
37
    public String getAcronym();
38

    
39
    /**
40
     * @see  #getAcronym()
41
     */
42
    public void setAcronym(String acronym);
43
}
(14-14/39)