X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Fembl%2FEntrySetType.java;fp=src%2Fjalview%2Fxml%2Fbinding%2Fembl%2FEntrySetType.java;h=7c061d7a6aa5b2458f4a70ef18d6e4db3bc80b3e;hb=50caa2bce4379ecdb02a2c0eccc44078487f2f0b;hp=6e73e7bd5db061d78f1c59b6267fbfaf8294334c;hpb=327e8459a091858b0207ddac4cadd8cb23f4cdeb;p=jalview.git diff --git a/src/jalview/xml/binding/embl/EntrySetType.java b/src/jalview/xml/binding/embl/EntrySetType.java index 6e73e7b..7c061d7 100644 --- a/src/jalview/xml/binding/embl/EntrySetType.java +++ b/src/jalview/xml/binding/embl/EntrySetType.java @@ -2,9 +2,10 @@ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. -// Generated on: 2018.09.14 at 02:46:00 PM BST +// Generated on: 2023.01.31 at 04:07:09 PM GMT // + package jalview.xml.binding.embl; import java.util.ArrayList; @@ -14,13 +15,11 @@ import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; + /** - *

- * Java class for EntrySetType complex type. + *

Java class for EntrySetType 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="EntrySetType">
@@ -37,42 +36,41 @@ import javax.xml.bind.annotation.XmlType;
  * 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "EntrySetType", propOrder = { "entry" })
-public class EntrySetType
-{
+@XmlType(name = "EntrySetType", propOrder = {
+    "entry"
+})
+public class EntrySetType {
 
-  @XmlElement(required = true)
-  protected List entry;
+    @XmlElement(required = true)
+    protected List entry;
 
-  /**
-   * Gets the value of the entry 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 entry property. - * - *

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

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

- * Objects of the following type(s) are allowed in the list {@link EntryType } - * - * - */ - public List getEntry() - { - if (entry == null) - { - entry = new ArrayList(); + /** + * Gets the value of the entry 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 entry property. + * + *

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

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

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