X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fxml%2Fbinding%2Funiprot%2FReferenceType.java;h=e00e9a708196d012daad53355d7f43fed6f87a36;hb=ee19482a42988b76fdca9d46065ce2ca14ea73c5;hp=729acaead72e830d289c14e12a5dfed4ff509066;hpb=57738a1f3c19b1c3a00bd3ac5108f8cd0af32f99;p=jalview.git diff --git a/src/jalview/xml/binding/uniprot/ReferenceType.java b/src/jalview/xml/binding/uniprot/ReferenceType.java index 729acae..e00e9a7 100644 --- a/src/jalview/xml/binding/uniprot/ReferenceType.java +++ b/src/jalview/xml/binding/uniprot/ReferenceType.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: 2019.04.05 at 08:01:44 AM BST +// Generated on: 2023.02.22 at 10:08:58 PM GMT // + package jalview.xml.binding.uniprot; import java.util.ArrayList; @@ -15,16 +16,14 @@ import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; + /** - * Describes a citation and a summary of its content. Equivalent to the flat - * file RN-, RP-, RC-, RX-, RG-, RA-, RT- and RL-lines. + * Describes a citation and a summary of its content. + * Equivalent to the flat file RN-, RP-, RC-, RX-, RG-, RA-, RT- and RL-lines. * - *

- * Java class for referenceType complex type. + *

Java class for referenceType 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="referenceType">
@@ -44,156 +43,151 @@ import javax.xml.bind.annotation.XmlType;
  * 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(
-  name = "referenceType",
-  propOrder =
-  { "citation", "scope", "source" })
-public class ReferenceType
-{
-
-  @XmlElement(required = true)
-  protected CitationType citation;
-
-  @XmlElement(required = true)
-  protected List scope;
-
-  protected SourceDataType source;
-
-  @XmlAttribute(name = "evidence")
-  protected List evidence;
-
-  @XmlAttribute(name = "key", required = true)
-  protected String key;
-
-  /**
-   * Gets the value of the citation property.
-   * 
-   * @return possible object is {@link CitationType }
-   * 
-   */
-  public CitationType getCitation()
-  {
-    return citation;
-  }
+@XmlType(name = "referenceType", propOrder = {
+    "citation",
+    "scope",
+    "source"
+})
+public class ReferenceType {
+
+    @XmlElement(required = true)
+    protected CitationType citation;
+    @XmlElement(required = true)
+    protected List scope;
+    protected SourceDataType source;
+    @XmlAttribute(name = "evidence")
+    protected List evidence;
+    @XmlAttribute(name = "key", required = true)
+    protected String key;
+
+    /**
+     * Gets the value of the citation property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link CitationType }
+     *     
+     */
+    public CitationType getCitation() {
+        return citation;
+    }
 
-  /**
-   * Sets the value of the citation property.
-   * 
-   * @param value
-   *          allowed object is {@link CitationType }
-   * 
-   */
-  public void setCitation(CitationType value)
-  {
-    this.citation = value;
-  }
+    /**
+     * Sets the value of the citation property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link CitationType }
+     *     
+     */
+    public void setCitation(CitationType value) {
+        this.citation = value;
+    }
 
-  /**
-   * Gets the value of the scope 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 scope property. - * - *

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

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

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

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link String } + * + * + */ + public List getScope() { + if (scope == null) { + scope = new ArrayList(); + } + return this.scope; } - return this.scope; - } - /** - * Gets the value of the source property. - * - * @return possible object is {@link SourceDataType } - * - */ - public SourceDataType getSource() - { - return source; - } + /** + * Gets the value of the source property. + * + * @return + * possible object is + * {@link SourceDataType } + * + */ + public SourceDataType getSource() { + return source; + } - /** - * Sets the value of the source property. - * - * @param value - * allowed object is {@link SourceDataType } - * - */ - public void setSource(SourceDataType value) - { - this.source = value; - } + /** + * Sets the value of the source property. + * + * @param value + * allowed object is + * {@link SourceDataType } + * + */ + public void setSource(SourceDataType value) { + this.source = value; + } - /** - * Gets the value of the evidence 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 evidence property. - * - *

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

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

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

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

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

+ * Objects of the following type(s) are allowed in the list + * {@link Integer } + * + * + */ + public List getEvidence() { + if (evidence == null) { + evidence = new ArrayList(); + } + return this.evidence; } - return this.evidence; - } - /** - * Gets the value of the key property. - * - * @return possible object is {@link String } - * - */ - public String getKey() - { - return key; - } + /** + * Gets the value of the key property. + * + * @return + * possible object is + * {@link String } + * + */ + public String getKey() { + return key; + } - /** - * Sets the value of the key property. - * - * @param value - * allowed object is {@link String } - * - */ - public void setKey(String value) - { - this.key = value; - } + /** + * Sets the value of the key property. + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setKey(String value) { + this.key = value; + } }