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.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.XmlElement;
16 import javax.xml.bind.annotation.XmlType;
20 * <p>Java class for VAMSAS complex type.
22 * <p>The following schema fragment specifies the expected content contained within this class.
25 * <complexType name="VAMSAS">
27 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29 * <element name="Tree" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
30 * <element ref="{www.vamsas.ac.uk/jalview/version2}SequenceSet" maxOccurs="unbounded" minOccurs="0"/>
33 * </complexContent>
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "VAMSAS", propOrder = {
46 @XmlElement(name = "Tree")
47 protected List<String> tree;
48 @XmlElement(name = "SequenceSet")
49 protected List<SequenceSet> sequenceSet;
52 * Gets the value of the tree property.
55 * This accessor method returns a reference to the live list,
56 * not a snapshot. Therefore any modification you make to the
57 * returned list will be present inside the JAXB object.
58 * This is why there is not a <CODE>set</CODE> method for the tree property.
61 * For example, to add a new item, do as follows:
63 * getTree().add(newItem);
68 * Objects of the following type(s) are allowed in the list
73 public List<String> getTree() {
75 tree = new ArrayList<String>();
81 * Gets the value of the sequenceSet property.
84 * This accessor method returns a reference to the live list,
85 * not a snapshot. Therefore any modification you make to the
86 * returned list will be present inside the JAXB object.
87 * This is why there is not a <CODE>set</CODE> method for the sequenceSet property.
90 * For example, to add a new item, do as follows:
92 * getSequenceSet().add(newItem);
97 * Objects of the following type(s) are allowed in the list
98 * {@link SequenceSet }
102 public List<SequenceSet> getSequenceSet() {
103 if (sequenceSet == null) {
104 sequenceSet = new ArrayList<SequenceSet>();
106 return this.sequenceSet;