3b449fe2aeaea9e5a6125e6702878ed145ff3234
[jalview.git] / src / jalview / xml / binding / jalview / DoubleVector.java
1 //
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: 2023.05.13 at 06:58:41 PM BST 
6 //
7
8 package jalview.xml.binding.jalview;
9
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;
16
17 /**
18  * <p>
19  * Java class for DoubleVector complex type.
20  * 
21  * <p>
22  * The following schema fragment specifies the expected content contained within
23  * this class.
24  * 
25  * <pre>
26  * &lt;complexType name="DoubleVector">
27  *   &lt;complexContent>
28  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29  *       &lt;sequence>
30  *         &lt;element name="v" type="{http://www.w3.org/2001/XMLSchema}double" maxOccurs="unbounded" minOccurs="0"/>
31  *       &lt;/sequence>
32  *     &lt;/restriction>
33  *   &lt;/complexContent>
34  * &lt;/complexType>
35  * </pre>
36  * 
37  * 
38  */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(
41   name = "DoubleVector",
42   namespace = "www.jalview.org",
43   propOrder =
44   { "v" })
45 public class DoubleVector
46 {
47
48   @XmlElement(type = Double.class)
49   protected List<Double> v;
50
51   /**
52    * Gets the value of the v property.
53    * 
54    * <p>
55    * This accessor method returns a reference to the live list, not a snapshot.
56    * Therefore any modification you make to the returned list will be present
57    * inside the JAXB object. This is why there is not a <CODE>set</CODE> method
58    * for the v property.
59    * 
60    * <p>
61    * For example, to add a new item, do as follows:
62    * 
63    * <pre>
64    * getV().add(newItem);
65    * </pre>
66    * 
67    * 
68    * <p>
69    * Objects of the following type(s) are allowed in the list {@link Double }
70    * 
71    * 
72    */
73   public List<Double> getV()
74   {
75     if (v == null)
76     {
77       v = new ArrayList<Double>();
78     }
79     return this.v;
80   }
81
82 }