JAL-3785 JAL- Merge branch 'bug/JAL-3785autoOverviewTitle' into 2_11_2_develop
[jalview.git] / src / jalview / xml / binding / uniprot / ProteinExistenceType.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 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  * <complexType name="proteinExistenceType">
27  *   <complexContent>
28  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29  *       <attribute name="type" use="required">
30  *         <simpleType>
31  *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
32  *             <enumeration value="evidence at protein level"/>
33  *             <enumeration value="evidence at transcript level"/>
34  *             <enumeration value="inferred from homology"/>
35  *             <enumeration value="predicted"/>
36  *             <enumeration value="uncertain"/>
37  *           </restriction>
38  *         </simpleType>
39  *       </attribute>
40  *     </restriction>
41  *   </complexContent>
42  * </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 }