JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / xml / binding / uniprot / ConsortiumType.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  * Describes the authors of a citation when these are represented by a
17  * consortium. Equivalent to the flat file RG-line.
18  * 
19  * <p>
20  * Java class for consortiumType 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="consortiumType">
28  *   &lt;complexContent>
29  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30  *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
31  *     &lt;/restriction>
32  *   &lt;/complexContent>
33  * &lt;/complexType>
34  * </pre>
35  * 
36  * 
37  */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "consortiumType")
40 public class ConsortiumType
41 {
42
43   @XmlAttribute(name = "name", required = true)
44   protected String name;
45
46   /**
47    * Gets the value of the name property.
48    * 
49    * @return possible object is {@link String }
50    * 
51    */
52   public String getName()
53   {
54     return name;
55   }
56
57   /**
58    * Sets the value of the name property.
59    * 
60    * @param value
61    *          allowed object is {@link String }
62    * 
63    */
64   public void setName(String value)
65   {
66     this.name = value;
67   }
68
69 }