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