JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / xml / binding / uniprot / PersonType.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 personType 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="personType">
25  *   &lt;complexContent>
26  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  *       &lt;attribute name="name" 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 = "personType")
37 public class PersonType
38 {
39
40   @XmlAttribute(name = "name", required = true)
41   protected String name;
42
43   /**
44    * Gets the value of the name property.
45    * 
46    * @return possible object is {@link String }
47    * 
48    */
49   public String getName()
50   {
51     return name;
52   }
53
54   /**
55    * Sets the value of the name property.
56    * 
57    * @param value
58    *          allowed object is {@link String }
59    * 
60    */
61   public void setName(String value)
62   {
63     this.name = value;
64   }
65
66 }