JAL-3438 spotless for 2.11.2.0
[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 package jalview.xml.binding.uniprot;
9
10 import javax.xml.bind.annotation.XmlAccessType;
11 import javax.xml.bind.annotation.XmlAccessorType;
12 import javax.xml.bind.annotation.XmlAttribute;
13 import javax.xml.bind.annotation.XmlType;
14
15 /**
16  * Describes the type of events that cause alternative products.
17  * 
18  * <p>
19  * Java class for eventType complex type.
20  * 
21  * <p>
22  * The following schema fragment specifies the expected content contained within
23  * this class.
24  * 
25  * <pre>
26  * &lt;complexType name="eventType">
27  *   &lt;complexContent>
28  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29  *       &lt;attribute name="type" use="required">
30  *         &lt;simpleType>
31  *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
32  *             &lt;enumeration value="alternative splicing"/>
33  *             &lt;enumeration value="alternative initiation"/>
34  *             &lt;enumeration value="alternative promoter"/>
35  *             &lt;enumeration value="ribosomal frameshifting"/>
36  *           &lt;/restriction>
37  *         &lt;/simpleType>
38  *       &lt;/attribute>
39  *     &lt;/restriction>
40  *   &lt;/complexContent>
41  * &lt;/complexType>
42  * </pre>
43  * 
44  * 
45  */
46 @XmlAccessorType(XmlAccessType.FIELD)
47 @XmlType(name = "eventType")
48 public class EventType
49 {
50
51   @XmlAttribute(name = "type", required = true)
52   protected String type;
53
54   /**
55    * Gets the value of the type property.
56    * 
57    * @return possible object is {@link String }
58    * 
59    */
60   public String getType()
61   {
62     return type;
63   }
64
65   /**
66    * Sets the value of the type property.
67    * 
68    * @param value
69    *          allowed object is {@link String }
70    * 
71    */
72   public void setType(String value)
73   {
74     this.type = value;
75   }
76
77 }