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