0c3de0e9f33d2c82af9fd02929b02ed4ea786d20
[jalview.git] / src / jalview / xml / binding / uniprot / EventType.java
1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
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: 2019.04.05 at 08:01:44 AM BST 
6 //
7
8
9 package jalview.xml.binding.uniprot;
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.XmlType;
15
16
17 /**
18  * Describes the type of events that cause alternative products.
19  * 
20  * <p>Java class for eventType complex type.
21  * 
22  * <p>The following schema fragment specifies the expected content contained within this class.
23  * 
24  * <pre>
25  * &lt;complexType name="eventType">
26  *   &lt;complexContent>
27  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28  *       &lt;attribute name="type" use="required">
29  *         &lt;simpleType>
30  *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31  *             &lt;enumeration value="alternative splicing"/>
32  *             &lt;enumeration value="alternative initiation"/>
33  *             &lt;enumeration value="alternative promoter"/>
34  *             &lt;enumeration value="ribosomal frameshifting"/>
35  *           &lt;/restriction>
36  *         &lt;/simpleType>
37  *       &lt;/attribute>
38  *     &lt;/restriction>
39  *   &lt;/complexContent>
40  * &lt;/complexType>
41  * </pre>
42  * 
43  * 
44  */
45 @XmlAccessorType(XmlAccessType.FIELD)
46 @XmlType(name = "eventType")
47 public class EventType {
48
49     @XmlAttribute(name = "type", required = true)
50     protected String type;
51
52     /**
53      * Gets the value of the type property.
54      * 
55      * @return
56      *     possible object is
57      *     {@link String }
58      *     
59      */
60     public String getType() {
61         return type;
62     }
63
64     /**
65      * Sets the value of the type property.
66      * 
67      * @param value
68      *     allowed object is
69      *     {@link String }
70      *     
71      */
72     public void setType(String value) {
73         this.type = value;
74     }
75
76 }