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.util.ArrayList;
11 import java.util.List;
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlElement;
15 import javax.xml.bind.annotation.XmlType;
18 * <p>Java class for VAMSAS complex type.
20 * <p>The following schema fragment specifies the expected content
21 * contained within this class.
23 * <pre> &lt;complexType name="VAMSAS"&gt;
24 * &lt;complexContent&gt; &lt;restriction
25 * base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
26 * &lt;sequence&gt; &lt;element name="Tree"
27 * type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"
28 * minOccurs="0"/&gt; &lt;element
29 * ref="{www.vamsas.ac.uk/jalview/version2}SequenceSet" maxOccurs="unbounded"
30 * minOccurs="0"/&gt; &lt;/sequence&gt; &lt;/restriction&gt;
31 * &lt;/complexContent&gt; &lt;/complexType&gt; </pre>
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "VAMSAS", propOrder = { "tree", "sequenceSet" })
40 @XmlElement(name = "Tree")
41 protected List<String> tree;
43 @XmlElement(name = "SequenceSet")
44 protected List<SequenceSet> sequenceSet;
47 * Gets the value of the tree property.
49 * <p> This accessor method returns a reference to the live list, not a
50 * snapshot. Therefore any modification you make to the returned list will be
51 * present inside the JAXB object. This is why there is not a
52 * <CODE>set</CODE> method for the tree property.
54 * <p> For example, to add a new item, do as follows: <pre>
55 * getTree().add(newItem); </pre>
58 * <p> Objects of the following type(s) are allowed in the list
63 public List<String> getTree()
67 tree = new ArrayList<String>();
73 * Gets the value of the sequenceSet property.
75 * <p> This accessor method returns a reference to the live list, not a
76 * snapshot. Therefore any modification you make to the returned list will be
77 * present inside the JAXB object. This is why there is not a
78 * <CODE>set</CODE> method for the sequenceSet property.
80 * <p> For example, to add a new item, do as follows: <pre>
81 * getSequenceSet().add(newItem); </pre>
84 * <p> Objects of the following type(s) are allowed in the list
85 * {@link SequenceSet }
89 public List<SequenceSet> getSequenceSet()
91 if (sequenceSet == null)
93 sequenceSet = new ArrayList<SequenceSet>();
95 return this.sequenceSet;