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 DoubleVector complex type.
20 * <p>The following schema fragment specifies the expected content
21 * contained within this class.
23 * <pre> &lt;complexType name="DoubleVector"&gt;
24 * &lt;complexContent&gt; &lt;restriction
25 * base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
26 * &lt;sequence&gt; &lt;element name="v"
27 * type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded"
28 * minOccurs="0"/&gt; &lt;/sequence&gt; &lt;/restriction&gt;
29 * &lt;/complexContent&gt; &lt;/complexType&gt; </pre>
33 @XmlAccessorType(XmlAccessType.FIELD)
35 name = "DoubleVector",
36 namespace = "www.jalview.org",
39 public class DoubleVector
42 @XmlElement(type = Double.class)
43 protected List<Double> v;
46 * Gets the value of the v property.
48 * <p> This accessor method returns a reference to the live list, not a
49 * snapshot. Therefore any modification you make to the returned list will be
50 * present inside the JAXB object. This is why there is not a
51 * <CODE>set</CODE> method for the v property.
53 * <p> For example, to add a new item, do as follows: <pre>
54 * getV().add(newItem); </pre>
57 * <p> Objects of the following type(s) are allowed in the list
62 public List<Double> getV()
66 v = new ArrayList<Double>();