90adc2c553520f60b6cfd5f60205a16ecc0925e1
[jalview.git] / src / jalview / xml / binding / uniprot / EventType.java
1 //
2 // This file was generated by the Eclipse Implementation of JAXB, v2.3.3 
3 // See https://eclipse-ee4j.github.io/jaxb-ri 
4 // Any modifications to this file will be lost upon recompilation of the source schema. 
5 // Generated on: 2022.02.07 at 04:44:21 PM GMT 
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  * <complexType name="eventType">
26  *   <complexContent>
27  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28  *       <attribute name="type" use="required">
29  *         <simpleType>
30  *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
31  *             <enumeration value="alternative splicing"/>
32  *             <enumeration value="alternative initiation"/>
33  *             <enumeration value="alternative promoter"/>
34  *             <enumeration value="ribosomal frameshifting"/>
35  *           </restriction>
36  *         </simpleType>
37  *       </attribute>
38  *     </restriction>
39  *   </complexContent>
40  * </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 }