Project

General

Profile

Download (4.52 KB) Statistics
| Branch: | Tag: | Revision:
1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
5
// Generated on: 2015.10.06 at 04:54:40 PM CEST 
6
//
7

    
8

    
9
package org.bgbm.biovel.drf.tnr.msg;
10

    
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlType;
15

    
16

    
17
/**
18
 * <p>Java class for atomisedName complex type.
19
 * 
20
 * <p>The following schema fragment specifies the expected content contained within this class.
21
 * 
22
 * <pre>
23
 * &lt;complexType name="atomisedName"&gt;
24
 *   &lt;complexContent&gt;
25
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
26
 *       &lt;sequence&gt;
27
 *         &lt;element name="genusOrUninomial"&gt;
28
 *           &lt;simpleType&gt;
29
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
30
 *             &lt;/restriction&gt;
31
 *           &lt;/simpleType&gt;
32
 *         &lt;/element&gt;
33
 *         &lt;element name="infragenericEpithet" minOccurs="0"&gt;
34
 *           &lt;simpleType&gt;
35
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
36
 *             &lt;/restriction&gt;
37
 *           &lt;/simpleType&gt;
38
 *         &lt;/element&gt;
39
 *         &lt;element name="specificEpithet" minOccurs="0"&gt;
40
 *           &lt;simpleType&gt;
41
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
42
 *             &lt;/restriction&gt;
43
 *           &lt;/simpleType&gt;
44
 *         &lt;/element&gt;
45
 *         &lt;element name="infraspecificEpithet" minOccurs="0"&gt;
46
 *           &lt;simpleType&gt;
47
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
48
 *             &lt;/restriction&gt;
49
 *           &lt;/simpleType&gt;
50
 *         &lt;/element&gt;
51
 *       &lt;/sequence&gt;
52
 *     &lt;/restriction&gt;
53
 *   &lt;/complexContent&gt;
54
 * &lt;/complexType&gt;
55
 * </pre>
56
 * 
57
 * 
58
 */
59
@XmlAccessorType(XmlAccessType.FIELD)
60
@XmlType(name = "atomisedName", propOrder = {
61
    "genusOrUninomial",
62
    "infragenericEpithet",
63
    "specificEpithet",
64
    "infraspecificEpithet"
65
})
66
public class AtomisedName {
67

    
68
    @XmlElement(required = true)
69
    protected String genusOrUninomial;
70
    protected String infragenericEpithet;
71
    protected String specificEpithet;
72
    protected String infraspecificEpithet;
73

    
74
    /**
75
     * Gets the value of the genusOrUninomial property.
76
     * 
77
     * @return
78
     *     possible object is
79
     *     {@link String }
80
     *     
81
     */
82
    public String getGenusOrUninomial() {
83
        return genusOrUninomial;
84
    }
85

    
86
    /**
87
     * Sets the value of the genusOrUninomial property.
88
     * 
89
     * @param value
90
     *     allowed object is
91
     *     {@link String }
92
     *     
93
     */
94
    public void setGenusOrUninomial(String value) {
95
        this.genusOrUninomial = value;
96
    }
97

    
98
    /**
99
     * Gets the value of the infragenericEpithet property.
100
     * 
101
     * @return
102
     *     possible object is
103
     *     {@link String }
104
     *     
105
     */
106
    public String getInfragenericEpithet() {
107
        return infragenericEpithet;
108
    }
109

    
110
    /**
111
     * Sets the value of the infragenericEpithet property.
112
     * 
113
     * @param value
114
     *     allowed object is
115
     *     {@link String }
116
     *     
117
     */
118
    public void setInfragenericEpithet(String value) {
119
        this.infragenericEpithet = value;
120
    }
121

    
122
    /**
123
     * Gets the value of the specificEpithet property.
124
     * 
125
     * @return
126
     *     possible object is
127
     *     {@link String }
128
     *     
129
     */
130
    public String getSpecificEpithet() {
131
        return specificEpithet;
132
    }
133

    
134
    /**
135
     * Sets the value of the specificEpithet property.
136
     * 
137
     * @param value
138
     *     allowed object is
139
     *     {@link String }
140
     *     
141
     */
142
    public void setSpecificEpithet(String value) {
143
        this.specificEpithet = value;
144
    }
145

    
146
    /**
147
     * Gets the value of the infraspecificEpithet property.
148
     * 
149
     * @return
150
     *     possible object is
151
     *     {@link String }
152
     *     
153
     */
154
    public String getInfraspecificEpithet() {
155
        return infraspecificEpithet;
156
    }
157

    
158
    /**
159
     * Sets the value of the infraspecificEpithet property.
160
     * 
161
     * @param value
162
     *     allowed object is
163
     *     {@link String }
164
     *     
165
     */
166
    public void setInfraspecificEpithet(String value) {
167
        this.infraspecificEpithet = value;
168
    }
169

    
170
}
(1-1/13)