2ba310ef50be6b8effbfcd3bc0b60f4e469ce196
[jalview.git] / src / jalview / xml / binding / uniprot / InteractantType.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  * <p>Java class for interactantType complex type.
19  * 
20  * <p>The following schema fragment specifies the expected content contained within this class.
21  * 
22  * <pre>
23  * &lt;complexType name="interactantType">
24  *   &lt;complexContent>
25  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26  *       &lt;group ref="{http://uniprot.org/uniprot}interactantGroup" minOccurs="0"/>
27  *       &lt;attribute name="intactId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
28  *     &lt;/restriction>
29  *   &lt;/complexContent>
30  * &lt;/complexType>
31  * </pre>
32  * 
33  * 
34  */
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "interactantType", propOrder = {
37     "id",
38     "label"
39 })
40 public class InteractantType {
41
42     protected String id;
43     protected String label;
44     @XmlAttribute(name = "intactId", required = true)
45     protected String intactId;
46
47     /**
48      * Gets the value of the id property.
49      * 
50      * @return
51      *     possible object is
52      *     {@link String }
53      *     
54      */
55     public String getId() {
56         return id;
57     }
58
59     /**
60      * Sets the value of the id property.
61      * 
62      * @param value
63      *     allowed object is
64      *     {@link String }
65      *     
66      */
67     public void setId(String value) {
68         this.id = value;
69     }
70
71     /**
72      * Gets the value of the label property.
73      * 
74      * @return
75      *     possible object is
76      *     {@link String }
77      *     
78      */
79     public String getLabel() {
80         return label;
81     }
82
83     /**
84      * Sets the value of the label property.
85      * 
86      * @param value
87      *     allowed object is
88      *     {@link String }
89      *     
90      */
91     public void setLabel(String value) {
92         this.label = value;
93     }
94
95     /**
96      * Gets the value of the intactId property.
97      * 
98      * @return
99      *     possible object is
100      *     {@link String }
101      *     
102      */
103     public String getIntactId() {
104         return intactId;
105     }
106
107     /**
108      * Sets the value of the intactId property.
109      * 
110      * @param value
111      *     allowed object is
112      *     {@link String }
113      *     
114      */
115     public void setIntactId(String value) {
116         this.intactId = value;
117     }
118
119 }