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.12.20 at 11:47:26 AM GMT
9 package jalview.xml.binding.jalview;
11 import java.math.BigInteger;
12 import java.util.ArrayList;
13 import java.util.List;
14 import javax.xml.bind.annotation.XmlAccessType;
15 import javax.xml.bind.annotation.XmlAccessorType;
16 import javax.xml.bind.annotation.XmlAttribute;
17 import javax.xml.bind.annotation.XmlElement;
18 import javax.xml.bind.annotation.XmlRootElement;
19 import javax.xml.bind.annotation.XmlType;
23 * <p>Java class for anonymous complex type.
25 * <p>The following schema fragment specifies the expected content contained within this class.
30 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32 * <element name="alcodon" maxOccurs="unbounded" minOccurs="0">
35 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
36 * <attribute name="pos1" type="{http://www.w3.org/2001/XMLSchema}integer" />
37 * <attribute name="pos2" type="{http://www.w3.org/2001/XMLSchema}integer" />
38 * <attribute name="pos3" type="{http://www.w3.org/2001/XMLSchema}integer" />
40 * </complexContent>
43 * <element name="alcodMap" maxOccurs="unbounded" minOccurs="0">
46 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
48 * <element ref="{www.vamsas.ac.uk/jalview/version2}Mapping"/>
50 * <attribute name="dnasq" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
52 * </complexContent>
57 * </complexContent>
63 @XmlAccessorType(XmlAccessType.FIELD)
64 @XmlType(name = "", propOrder = {
68 @XmlRootElement(name = "AlcodonFrame")
69 public class AlcodonFrame {
71 protected List<AlcodonFrame.Alcodon> alcodon;
72 protected List<AlcodonFrame.AlcodMap> alcodMap;
75 * Gets the value of the alcodon property.
78 * This accessor method returns a reference to the live list,
79 * not a snapshot. Therefore any modification you make to the
80 * returned list will be present inside the JAXB object.
81 * This is why there is not a <CODE>set</CODE> method for the alcodon property.
84 * For example, to add a new item, do as follows:
86 * getAlcodon().add(newItem);
91 * Objects of the following type(s) are allowed in the list
92 * {@link AlcodonFrame.Alcodon }
96 public List<AlcodonFrame.Alcodon> getAlcodon() {
97 if (alcodon == null) {
98 alcodon = new ArrayList<AlcodonFrame.Alcodon>();
104 * Gets the value of the alcodMap property.
107 * This accessor method returns a reference to the live list,
108 * not a snapshot. Therefore any modification you make to the
109 * returned list will be present inside the JAXB object.
110 * This is why there is not a <CODE>set</CODE> method for the alcodMap property.
113 * For example, to add a new item, do as follows:
115 * getAlcodMap().add(newItem);
120 * Objects of the following type(s) are allowed in the list
121 * {@link AlcodonFrame.AlcodMap }
125 public List<AlcodonFrame.AlcodMap> getAlcodMap() {
126 if (alcodMap == null) {
127 alcodMap = new ArrayList<AlcodonFrame.AlcodMap>();
129 return this.alcodMap;
134 * <p>Java class for anonymous complex type.
136 * <p>The following schema fragment specifies the expected content contained within this class.
140 * <complexContent>
141 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
143 * <element ref="{www.vamsas.ac.uk/jalview/version2}Mapping"/>
145 * <attribute name="dnasq" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
147 * </complexContent>
153 @XmlAccessorType(XmlAccessType.FIELD)
154 @XmlType(name = "", propOrder = {
157 public static class AlcodMap {
159 @XmlElement(name = "Mapping", required = true)
160 protected Mapping mapping;
161 @XmlAttribute(name = "dnasq", required = true)
162 protected String dnasq;
166 * a Mapping entry and an associated protein sequence
174 public Mapping getMapping() {
179 * Sets the value of the mapping property.
186 public void setMapping(Mapping value) {
187 this.mapping = value;
191 * Gets the value of the dnasq property.
198 public String getDnasq() {
203 * Sets the value of the dnasq property.
210 public void setDnasq(String value) {
219 * specifies a series of aligned codons from an associated DNA sequence alignment that when translated correspond to columns of a peptide alignment.
220 * Element may have either all pos1,2,3 attributes specified, or none at all (indicating a gapped column with no translated peptide).
223 * <p>Java class for anonymous complex type.
225 * <p>The following schema fragment specifies the expected content contained within this class.
229 * <complexContent>
230 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
231 * <attribute name="pos1" type="{http://www.w3.org/2001/XMLSchema}integer" />
232 * <attribute name="pos2" type="{http://www.w3.org/2001/XMLSchema}integer" />
233 * <attribute name="pos3" type="{http://www.w3.org/2001/XMLSchema}integer" />
235 * </complexContent>
241 @XmlAccessorType(XmlAccessType.FIELD)
243 public static class Alcodon {
245 @XmlAttribute(name = "pos1")
246 protected BigInteger pos1;
247 @XmlAttribute(name = "pos2")
248 protected BigInteger pos2;
249 @XmlAttribute(name = "pos3")
250 protected BigInteger pos3;
253 * Gets the value of the pos1 property.
257 * {@link BigInteger }
260 public BigInteger getPos1() {
265 * Sets the value of the pos1 property.
269 * {@link BigInteger }
272 public void setPos1(BigInteger value) {
277 * Gets the value of the pos2 property.
281 * {@link BigInteger }
284 public BigInteger getPos2() {
289 * Sets the value of the pos2 property.
293 * {@link BigInteger }
296 public void setPos2(BigInteger value) {
301 * Gets the value of the pos3 property.
305 * {@link BigInteger }
308 public BigInteger getPos3() {
313 * Sets the value of the pos3 property.
317 * {@link BigInteger }
320 public void setPos3(BigInteger value) {