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
8 package jalview.xml.binding.jalview;
10 import java.math.BigInteger;
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlAttribute;
16 import javax.xml.bind.annotation.XmlElement;
17 import javax.xml.bind.annotation.XmlRootElement;
18 import javax.xml.bind.annotation.XmlType;
21 * <p>Java class for anonymous complex type.
23 * <p>The following schema fragment specifies the expected content
24 * contained within this class.
26 * <pre> &lt;complexType&gt; &lt;complexContent&gt;
27 * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
28 * &lt;sequence&gt; &lt;element name="alcodon" maxOccurs="unbounded"
29 * minOccurs="0"&gt; &lt;complexType&gt;
30 * &lt;complexContent&gt; &lt;restriction
31 * base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; &lt;attribute
32 * name="pos1" type="{http://www.w3.org/2001/XMLSchema}integer" /&gt;
33 * &lt;attribute name="pos2"
34 * type="{http://www.w3.org/2001/XMLSchema}integer" /&gt; &lt;attribute
35 * name="pos3" type="{http://www.w3.org/2001/XMLSchema}integer" /&gt;
36 * &lt;/restriction&gt; &lt;/complexContent&gt;
37 * &lt;/complexType&gt; &lt;/element&gt; &lt;element
38 * name="alcodMap" maxOccurs="unbounded" minOccurs="0"&gt;
39 * &lt;complexType&gt; &lt;complexContent&gt;
40 * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
41 * &lt;sequence&gt; &lt;element
42 * ref="{www.vamsas.ac.uk/jalview/version2}Mapping"/&gt;
43 * &lt;/sequence&gt; &lt;attribute name="dnasq" use="required"
44 * type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
45 * &lt;/restriction&gt; &lt;/complexContent&gt;
46 * &lt;/complexType&gt; &lt;/element&gt;
47 * &lt;/sequence&gt; &lt;/restriction&gt;
48 * &lt;/complexContent&gt; &lt;/complexType&gt; </pre>
52 @XmlAccessorType(XmlAccessType.FIELD)
53 @XmlType(name = "", propOrder = { "alcodon", "alcodMap" })
54 @XmlRootElement(name = "AlcodonFrame")
55 public class AlcodonFrame
58 protected List<AlcodonFrame.Alcodon> alcodon;
60 protected List<AlcodonFrame.AlcodMap> alcodMap;
63 * Gets the value of the alcodon property.
65 * <p> This accessor method returns a reference to the live list, not a
66 * snapshot. Therefore any modification you make to the returned list will be
67 * present inside the JAXB object. This is why there is not a
68 * <CODE>set</CODE> method for the alcodon property.
70 * <p> For example, to add a new item, do as follows: <pre>
71 * getAlcodon().add(newItem); </pre>
74 * <p> Objects of the following type(s) are allowed in the list
75 * {@link AlcodonFrame.Alcodon }
79 public List<AlcodonFrame.Alcodon> getAlcodon()
83 alcodon = new ArrayList<AlcodonFrame.Alcodon>();
89 * Gets the value of the alcodMap property.
91 * <p> This accessor method returns a reference to the live list, not a
92 * snapshot. Therefore any modification you make to the returned list will be
93 * present inside the JAXB object. This is why there is not a
94 * <CODE>set</CODE> method for the alcodMap property.
96 * <p> For example, to add a new item, do as follows: <pre>
97 * getAlcodMap().add(newItem); </pre>
100 * <p> Objects of the following type(s) are allowed in the list
101 * {@link AlcodonFrame.AlcodMap }
105 public List<AlcodonFrame.AlcodMap> getAlcodMap()
107 if (alcodMap == null)
109 alcodMap = new ArrayList<AlcodonFrame.AlcodMap>();
111 return this.alcodMap;
115 * <p>Java class for anonymous complex type.
117 * <p>The following schema fragment specifies the expected content
118 * contained within this class.
120 * <pre> &lt;complexType&gt; &lt;complexContent&gt;
121 * &lt;restriction
122 * base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
123 * &lt;sequence&gt; &lt;element
124 * ref="{www.vamsas.ac.uk/jalview/version2}Mapping"/&gt;
125 * &lt;/sequence&gt; &lt;attribute name="dnasq" use="required"
126 * type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
127 * &lt;/restriction&gt; &lt;/complexContent&gt;
128 * &lt;/complexType&gt; </pre>
132 @XmlAccessorType(XmlAccessType.FIELD)
133 @XmlType(name = "", propOrder = { "mapping" })
134 public static class AlcodMap
137 @XmlElement(name = "Mapping", required = true)
138 protected Mapping mapping;
140 @XmlAttribute(name = "dnasq", required = true)
141 protected String dnasq;
145 * a Mapping entry and an associated protein sequence
148 * @return possible object is {@link Mapping }
151 public Mapping getMapping()
157 * Sets the value of the mapping property.
160 * allowed object is {@link Mapping }
163 public void setMapping(Mapping value)
165 this.mapping = value;
169 * Gets the value of the dnasq property.
171 * @return possible object is {@link String }
174 public String getDnasq()
180 * Sets the value of the dnasq property.
183 * allowed object is {@link String }
186 public void setDnasq(String value)
195 * specifies a series of aligned codons from an associated DNA sequence
196 * alignment that when translated correspond to columns of a peptide
197 * alignment. Element may have either all pos1,2,3 attributes specified, or
198 * none at all (indicating a gapped column with no translated peptide).
201 * <p>Java class for anonymous complex type.
203 * <p>The following schema fragment specifies the expected content
204 * contained within this class.
206 * <pre> &lt;complexType&gt; &lt;complexContent&gt;
207 * &lt;restriction
208 * base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; &lt;attribute
209 * name="pos1" type="{http://www.w3.org/2001/XMLSchema}integer" /&gt;
210 * &lt;attribute name="pos2"
211 * type="{http://www.w3.org/2001/XMLSchema}integer" /&gt;
212 * &lt;attribute name="pos3"
213 * type="{http://www.w3.org/2001/XMLSchema}integer" /&gt;
214 * &lt;/restriction&gt; &lt;/complexContent&gt;
215 * &lt;/complexType&gt; </pre>
219 @XmlAccessorType(XmlAccessType.FIELD)
221 public static class Alcodon
224 @XmlAttribute(name = "pos1")
225 protected BigInteger pos1;
227 @XmlAttribute(name = "pos2")
228 protected BigInteger pos2;
230 @XmlAttribute(name = "pos3")
231 protected BigInteger pos3;
234 * Gets the value of the pos1 property.
236 * @return possible object is {@link BigInteger }
239 public BigInteger getPos1()
245 * Sets the value of the pos1 property.
248 * allowed object is {@link BigInteger }
251 public void setPos1(BigInteger value)
257 * Gets the value of the pos2 property.
259 * @return possible object is {@link BigInteger }
262 public BigInteger getPos2()
268 * Sets the value of the pos2 property.
271 * allowed object is {@link BigInteger }
274 public void setPos2(BigInteger value)
280 * Gets the value of the pos3 property.
282 * @return possible object is {@link BigInteger }
285 public BigInteger getPos3()
291 * Sets the value of the pos3 property.
294 * allowed object is {@link BigInteger }
297 public void setPos3(BigInteger value)