JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / xml / binding / jalview / SequenceType.java
1 //
2 // This file was generated by the Eclipse Implementation of JAXB, v2.3.3 
3 // See https://eclipse-ee4j.github.io/jaxb-ri 
4 // Any modifications to this file will be lost upon recompilation of the source schema. 
5 // Generated on: 2021.08.30 at 11:05:22 AM BST 
6 //
7
8 package jalview.xml.binding.jalview;
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.XmlSeeAlso;
14 import javax.xml.bind.annotation.XmlType;
15
16 /**
17  * <p>Java class for SequenceType complex type.
18  * 
19  * <p>The following schema fragment specifies the expected content
20  * contained within this class.
21  * 
22  * <pre> <complexType name="SequenceType">
23  * <complexContent> <restriction
24  * base="{http://www.w3.org/2001/XMLSchema}anyType">
25  * <sequence> <element name="sequence"
26  * type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27  * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"
28  * minOccurs="0"/> </sequence> <attribute name="id"
29  * type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute
30  * name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
31  * </restriction> </complexContent>
32  * </complexType> </pre>
33  * 
34  * 
35  */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "SequenceType", propOrder = { "sequence", "name" })
38 @XmlSeeAlso({ Sequence.class })
39 public class SequenceType
40 {
41
42   protected String sequence;
43
44   protected String name;
45
46   @XmlAttribute(name = "id")
47   protected String id;
48
49   @XmlAttribute(name = "description")
50   protected String description;
51
52   /**
53    * Gets the value of the sequence property.
54    * 
55    * @return possible object is {@link String }
56    * 
57    */
58   public String getSequence()
59   {
60     return sequence;
61   }
62
63   /**
64    * Sets the value of the sequence property.
65    * 
66    * @param value
67    *          allowed object is {@link String }
68    * 
69    */
70   public void setSequence(String value)
71   {
72     this.sequence = value;
73   }
74
75   /**
76    * Gets the value of the name property.
77    * 
78    * @return possible object is {@link String }
79    * 
80    */
81   public String getName()
82   {
83     return name;
84   }
85
86   /**
87    * Sets the value of the name property.
88    * 
89    * @param value
90    *          allowed object is {@link String }
91    * 
92    */
93   public void setName(String value)
94   {
95     this.name = value;
96   }
97
98   /**
99    * Gets the value of the id property.
100    * 
101    * @return possible object is {@link String }
102    * 
103    */
104   public String getId()
105   {
106     return id;
107   }
108
109   /**
110    * Sets the value of the id property.
111    * 
112    * @param value
113    *          allowed object is {@link String }
114    * 
115    */
116   public void setId(String value)
117   {
118     this.id = value;
119   }
120
121   /**
122    * Gets the value of the description property.
123    * 
124    * @return possible object is {@link String }
125    * 
126    */
127   public String getDescription()
128   {
129     return description;
130   }
131
132   /**
133    * Sets the value of the description property.
134    * 
135    * @param value
136    *          allowed object is {@link String }
137    * 
138    */
139   public void setDescription(String value)
140   {
141     this.description = value;
142   }
143
144 }