Project

General

Profile

Download (3.98 KB) Statistics
| Branch: | Tag: | Revision:
1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 
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: 2011.10.17 at 04:06:44 PM CEST 
6
//
7

    
8

    
9
package eu.etaxonomy.cdm.io.dwca.jaxb;
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.XmlRootElement;
15
import javax.xml.bind.annotation.XmlType;
16

    
17
	
18
/**
19
 * <p>Java class for anonymous complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType>
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element ref="{http://rs.tdwg.org/dwc/text/}files"/>
29
 *         &lt;element ref="{http://rs.tdwg.org/dwc/text/}coreid"/>
30
 *         &lt;element ref="{http://rs.tdwg.org/dwc/text/}field" maxOccurs="unbounded"/>
31
 *       &lt;/sequence>
32
 *       &lt;attribute name="rowType" use="required">
33
 *         &lt;simpleType>
34
 *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyURI">
35
 *             &lt;enumeration value="http://rs.gbif.org/terms/1.0/Description"/>
36
 *             &lt;enumeration value="http://rs.gbif.org/terms/1.0/VernacularName"/>
37
 *           &lt;/restriction>
38
 *         &lt;/simpleType>
39
 *       &lt;/attribute>
40
 *       &lt;attribute name="linesTerminatedBy" use="required">
41
 *         &lt;simpleType>
42
 *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
43
 *             &lt;enumeration value="\r\n"/>
44
 *           &lt;/restriction>
45
 *         &lt;/simpleType>
46
 *       &lt;/attribute>
47
 *       &lt;attribute name="ignoreHeaderLines" use="required">
48
 *         &lt;simpleType>
49
 *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}byte">
50
 *             &lt;enumeration value="1"/>
51
 *           &lt;/restriction>
52
 *         &lt;/simpleType>
53
 *       &lt;/attribute>
54
 *       &lt;attribute name="fieldsTerminatedBy" use="required">
55
 *         &lt;simpleType>
56
 *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
57
 *             &lt;enumeration value=","/>
58
 *           &lt;/restriction>
59
 *         &lt;/simpleType>
60
 *       &lt;/attribute>
61
 *       &lt;attribute name="fieldsEnclosedBy" use="required">
62
 *         &lt;simpleType>
63
 *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
64
 *             &lt;enumeration value="""/>
65
 *           &lt;/restriction>
66
 *         &lt;/simpleType>
67
 *       &lt;/attribute>
68
 *       &lt;attribute name="encoding" use="required">
69
 *         &lt;simpleType>
70
 *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
71
 *             &lt;enumeration value="UTF-8"/>
72
 *           &lt;/restriction>
73
 *         &lt;/simpleType>
74
 *       &lt;/attribute>
75
 *     &lt;/restriction>
76
 *   &lt;/complexContent>
77
 * &lt;/complexType>
78
 * </pre>
79
 * 
80
 * 
81
 */
82
@XmlAccessorType(XmlAccessType.FIELD)
83
@XmlType(name = "Extension", propOrder = {
84
	"coreid"
85
})
86
@XmlRootElement(name = "extension")
87
public class Extension extends ArchiveEntryBase{
88

    
89
	public static final String VERNACULAR_NAME = "http://rs.gbif.org/terms/1.0/VernacularName";
90

    
91
	
92
    @XmlElement(required = true)
93
    protected Coreid coreid;
94
 
95
    /**
96
     * Gets the value of the coreid property.
97
     * 
98
     * @return
99
     *     possible object is
100
     *     {@link Coreid }
101
     *     
102
     */
103
    public Coreid getCoreid() {
104
        return coreid;
105
    }
106

    
107
    /**
108
     * Sets the value of the coreid property.
109
     * 
110
     * @param value
111
     *     allowed object is
112
     *     {@link Coreid }
113
     *     
114
     */
115
    public void setCoreid(Coreid value) {
116
        this.coreid = value;
117
    }
118

    
119
 
120
}
(5-5/10)