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 DoubleVector complex type.
22 * <p>The following schema fragment specifies the expected content contained within this class.
25 * <complexType name="DoubleVector">
27 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29 * <element name="v" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded" minOccurs="0"/>
32 * </complexContent>
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "DoubleVector", namespace = "www.jalview.org", propOrder = {
42 public class DoubleVector {
44 @XmlElement(type = Double.class)
45 protected List<Double> v;
48 * Gets the value of the v property.
51 * This accessor method returns a reference to the live list,
52 * not a snapshot. Therefore any modification you make to the
53 * returned list will be present inside the JAXB object.
54 * This is why there is not a <CODE>set</CODE> method for the v property.
57 * For example, to add a new item, do as follows:
59 * getV().add(newItem);
64 * Objects of the following type(s) are allowed in the list
69 public List<Double> getV() {
71 v = new ArrayList<Double>();