JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / xml / binding / uniprot / MoleculeType.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 import javax.xml.bind.annotation.XmlValue;
15
16 /**
17  * Describes a molecule by name or unique identifier.
18  * 
19  * <p>
20  * Java class for moleculeType 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="moleculeType">
28  *   &lt;simpleContent>
29  *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
30  *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
31  *     &lt;/extension>
32  *   &lt;/simpleContent>
33  * &lt;/complexType>
34  * </pre>
35  * 
36  * 
37  */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "moleculeType", propOrder = { "value" })
40 public class MoleculeType
41 {
42
43   @XmlValue
44   protected String value;
45
46   @XmlAttribute(name = "id")
47   protected String id;
48
49   /**
50    * Gets the value of the value property.
51    * 
52    * @return possible object is {@link String }
53    * 
54    */
55   public String getValue()
56   {
57     return value;
58   }
59
60   /**
61    * Sets the value of the value property.
62    * 
63    * @param value
64    *          allowed object is {@link String }
65    * 
66    */
67   public void setValue(String value)
68   {
69     this.value = value;
70   }
71
72   /**
73    * Gets the value of the id property.
74    * 
75    * @return possible object is {@link String }
76    * 
77    */
78   public String getId()
79   {
80     return id;
81   }
82
83   /**
84    * Sets the value of the id property.
85    * 
86    * @param value
87    *          allowed object is {@link String }
88    * 
89    */
90   public void setId(String value)
91   {
92     this.id = value;
93   }
94
95 }