X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Funiprot%2FGeneType.java;h=cbd47bf17c54a482f43bc924332e83449456b471;hb=fdde9a078d7bdb46ed9fb7fe115ea83c84a19c81;hp=5fa628e776cd990774f7d64b06f60b2b5b4d2c0d;hpb=5f75f9bff16bce462ef737bacfadd3463366c5c0;p=jalview.git diff --git a/src/jalview/xml/binding/uniprot/GeneType.java b/src/jalview/xml/binding/uniprot/GeneType.java index 5fa628e..cbd47bf 100644 --- a/src/jalview/xml/binding/uniprot/GeneType.java +++ b/src/jalview/xml/binding/uniprot/GeneType.java @@ -5,7 +5,6 @@ // Generated on: 2023.03.17 at 05:31:46 PM GMT // - package jalview.xml.binding.uniprot; import java.util.ArrayList; @@ -15,14 +14,15 @@ import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; - /** - * Describes a gene. - * Equivalent to the flat file GN-line. + * Describes a gene. Equivalent to the flat file GN-line. * - *

Java class for geneType complex type. + *

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

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

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

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

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

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

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