X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FDoubleVector.java;fp=src%2Fjalview%2Fxml%2Fbinding%2Fjalview%2FDoubleVector.java;h=12f39c04e8116bd845db1db4452c509de9fbc41b;hb=4b7d3640209c4434d569c746672cf9eed4250ace;hp=6546be9bb860be04298bff538acc4cb4f7ed99d0;hpb=b3fb6325a8bc315c5c938faf10ffd2e73d965f16;p=jalview.git diff --git a/src/jalview/xml/binding/jalview/DoubleVector.java b/src/jalview/xml/binding/jalview/DoubleVector.java index 6546be9..12f39c0 100644 --- a/src/jalview/xml/binding/jalview/DoubleVector.java +++ b/src/jalview/xml/binding/jalview/DoubleVector.java @@ -5,7 +5,6 @@ // Generated on: 2023.03.17 at 05:31:44 PM GMT // - package jalview.xml.binding.jalview; import java.util.ArrayList; @@ -15,11 +14,13 @@ import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; - /** - *

Java class for DoubleVector complex type. + *

+ * Java class for DoubleVector complex type. * - *

The following schema fragment specifies the expected content contained within this class. + *

+ * The following schema fragment specifies the expected content contained within + * this class. * *

  * <complexType name="DoubleVector">
@@ -36,41 +37,46 @@ import javax.xml.bind.annotation.XmlType;
  * 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "DoubleVector", namespace = "www.jalview.org", propOrder = {
-    "v"
-})
-public class DoubleVector {
+@XmlType(
+  name = "DoubleVector",
+  namespace = "www.jalview.org",
+  propOrder =
+  { "v" })
+public class DoubleVector
+{
 
-    @XmlElement(type = Double.class)
-    protected List v;
+  @XmlElement(type = Double.class)
+  protected List v;
 
-    /**
-     * Gets the value of the v property.
-     * 
-     * 

- * This accessor method returns a reference to the live list, - * not a snapshot. Therefore any modification you make to the - * returned list will be present inside the JAXB object. - * This is why there is not a set method for the v property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getV().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Double } - * - * - */ - public List getV() { - if (v == null) { - v = new ArrayList(); - } - return this.v; + /** + * Gets the value of the v property. + * + *

+ * This accessor method returns a reference to the live list, not a snapshot. + * Therefore any modification you make to the returned list will be present + * inside the JAXB object. This is why there is not a set method + * for the v property. + * + *

+ * For example, to add a new item, do as follows: + * + *

+   * getV().add(newItem);
+   * 
+ * + * + *

+ * Objects of the following type(s) are allowed in the list {@link Double } + * + * + */ + public List getV() + { + if (v == null) + { + v = new ArrayList(); } + return this.v; + } }