JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / xml / binding / uniprot / PropertyType.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 propertyType 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="propertyType">
25  *   &lt;complexContent>
26  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  *       &lt;attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
28  *       &lt;attribute name="value" 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 = "propertyType")
38 public class PropertyType
39 {
40
41   @XmlAttribute(name = "type", required = true)
42   protected String type;
43
44   @XmlAttribute(name = "value", required = true)
45   protected String value;
46
47   /**
48    * Gets the value of the type property.
49    * 
50    * @return possible object is {@link String }
51    * 
52    */
53   public String getType()
54   {
55     return type;
56   }
57
58   /**
59    * Sets the value of the type property.
60    * 
61    * @param value
62    *          allowed object is {@link String }
63    * 
64    */
65   public void setType(String value)
66   {
67     this.type = value;
68   }
69
70   /**
71    * Gets the value of the value property.
72    * 
73    * @return possible object is {@link String }
74    * 
75    */
76   public String getValue()
77   {
78     return value;
79   }
80
81   /**
82    * Sets the value of the value property.
83    * 
84    * @param value
85    *          allowed object is {@link String }
86    * 
87    */
88   public void setValue(String value)
89   {
90     this.value = value;
91   }
92
93 }