JAL-3063 top level element added to JalviewWsParamSet.xsd
[jalview.git] / src / jalview / xml / binding / jalview / SequenceType.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: 2018.09.28 at 12:18:54 PM BST 
6 //
7
8
9 package jalview.xml.binding.jalview;
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.XmlSeeAlso;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /**
19  * <p>Java class for SequenceType complex type.
20  * 
21  * <p>The following schema fragment specifies the expected content contained within this class.
22  * 
23  * <pre>
24  * &lt;complexType name="SequenceType">
25  *   &lt;complexContent>
26  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27  *       &lt;sequence>
28  *         &lt;element name="sequence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29  *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30  *       &lt;/sequence>
31  *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
32  *       &lt;attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
33  *     &lt;/restriction>
34  *   &lt;/complexContent>
35  * &lt;/complexType>
36  * </pre>
37  * 
38  * 
39  */
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "SequenceType", propOrder = {
42     "sequence",
43     "name"
44 })
45 @XmlSeeAlso({
46     Sequence.class
47 })
48 public class SequenceType {
49
50     protected String sequence;
51     protected String name;
52     @XmlAttribute(name = "id")
53     protected String id;
54     @XmlAttribute(name = "description")
55     protected String description;
56
57     /**
58      * Gets the value of the sequence property.
59      * 
60      * @return
61      *     possible object is
62      *     {@link String }
63      *     
64      */
65     public String getSequence() {
66         return sequence;
67     }
68
69     /**
70      * Sets the value of the sequence property.
71      * 
72      * @param value
73      *     allowed object is
74      *     {@link String }
75      *     
76      */
77     public void setSequence(String value) {
78         this.sequence = value;
79     }
80
81     /**
82      * Gets the value of the name property.
83      * 
84      * @return
85      *     possible object is
86      *     {@link String }
87      *     
88      */
89     public String getName() {
90         return name;
91     }
92
93     /**
94      * Sets the value of the name property.
95      * 
96      * @param value
97      *     allowed object is
98      *     {@link String }
99      *     
100      */
101     public void setName(String value) {
102         this.name = value;
103     }
104
105     /**
106      * Gets the value of the id property.
107      * 
108      * @return
109      *     possible object is
110      *     {@link String }
111      *     
112      */
113     public String getId() {
114         return id;
115     }
116
117     /**
118      * Sets the value of the id property.
119      * 
120      * @param value
121      *     allowed object is
122      *     {@link String }
123      *     
124      */
125     public void setId(String value) {
126         this.id = value;
127     }
128
129     /**
130      * Gets the value of the description property.
131      * 
132      * @return
133      *     possible object is
134      *     {@link String }
135      *     
136      */
137     public String getDescription() {
138         return description;
139     }
140
141     /**
142      * Sets the value of the description property.
143      * 
144      * @param value
145      *     allowed object is
146      *     {@link String }
147      *     
148      */
149     public void setDescription(String value) {
150         this.description = value;
151     }
152
153 }