b2c4fdd05f674b0c2b420f8d1486df19b976f4e1
[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
9 package jalview.xml.binding.uniprot;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlType;
15
16
17 /**
18  * Describes the authors of a citation when these are represented by a consortium.
19  *             Equivalent to the flat file RG-line.
20  * 
21  * <p>Java class for consortiumType complex type.
22  * 
23  * <p>The following schema fragment specifies the expected content contained within this class.
24  * 
25  * <pre>
26  * &lt;complexType name="consortiumType">
27  *   &lt;complexContent>
28  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29  *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
30  *     &lt;/restriction>
31  *   &lt;/complexContent>
32  * &lt;/complexType>
33  * </pre>
34  * 
35  * 
36  */
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "consortiumType")
39 public class ConsortiumType {
40
41     @XmlAttribute(name = "name", required = true)
42     protected String name;
43
44     /**
45      * Gets the value of the name property.
46      * 
47      * @return
48      *     possible object is
49      *     {@link String }
50      *     
51      */
52     public String getName() {
53         return name;
54     }
55
56     /**
57      * Sets the value of the name property.
58      * 
59      * @param value
60      *     allowed object is
61      *     {@link String }
62      *     
63      */
64     public void setName(String value) {
65         this.name = value;
66     }
67
68 }