Project

General

Profile

Download (1.76 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.XmlAttribute;
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;attribute name="index" use="required">
28
 *         &lt;simpleType>
29
 *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}byte">
30
 *             &lt;enumeration value="0"/>
31
 *           &lt;/restriction>
32
 *         &lt;/simpleType>
33
 *       &lt;/attribute>
34
 *     &lt;/restriction>
35
 *   &lt;/complexContent>
36
 * &lt;/complexType>
37
 * </pre>
38
 * 
39
 * 
40
 */
41
@XmlAccessorType(XmlAccessType.FIELD)
42
@XmlType(name = "")
43
@XmlRootElement(name = "coreid")
44
public class Coreid {
45

    
46
    @XmlAttribute(required = true)
47
    protected byte index;
48

    
49
    /**
50
     * Gets the value of the index property.
51
     * 
52
     */
53
    public byte getIndex() {
54
        return index;
55
    }
56

    
57
    /**
58
     * Sets the value of the index property.
59
     * 
60
     */
61
    public void setIndex(byte value) {
62
        this.index = value;
63
    }
64

    
65
}
(4-4/10)