JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / xml / binding / uniprot / ProteinExistenceType.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 evidence for the protein's existence. Equivalent to the flat
17  * file PE-line.
18  * 
19  * <p>
20  * Java class for proteinExistenceType complex type.
21  * 
22  * <p>
23  * The following schema fragment specifies the expected content contained within
24  * this class.
25  * 
26  * <pre>
27  * &lt;complexType name="proteinExistenceType">
28  *   &lt;complexContent>
29  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30  *       &lt;attribute name="type" use="required">
31  *         &lt;simpleType>
32  *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
33  *             &lt;enumeration value="evidence at protein level"/>
34  *             &lt;enumeration value="evidence at transcript level"/>
35  *             &lt;enumeration value="inferred from homology"/>
36  *             &lt;enumeration value="predicted"/>
37  *             &lt;enumeration value="uncertain"/>
38  *           &lt;/restriction>
39  *         &lt;/simpleType>
40  *       &lt;/attribute>
41  *     &lt;/restriction>
42  *   &lt;/complexContent>
43  * &lt;/complexType>
44  * </pre>
45  * 
46  * 
47  */
48 @XmlAccessorType(XmlAccessType.FIELD)
49 @XmlType(name = "proteinExistenceType")
50 public class ProteinExistenceType
51 {
52
53   @XmlAttribute(name = "type", required = true)
54   protected String type;
55
56   /**
57    * Gets the value of the type property.
58    * 
59    * @return possible object is {@link String }
60    * 
61    */
62   public String getType()
63   {
64     return type;
65   }
66
67   /**
68    * Sets the value of the type property.
69    * 
70    * @param value
71    *          allowed object is {@link String }
72    * 
73    */
74   public void setType(String value)
75   {
76     this.type = value;
77   }
78
79 }