JAL-1713 update from Jalview 2.11.3 develop
[jalview.git] / src / jalview / xml / binding / uniprot / CitationType.java
index b38df87..b07b8e2 100644 (file)
@@ -2,9 +2,10 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // 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.01.31 at 04:07:10 PM GMT 
 //
 
+
 package jalview.xml.binding.uniprot;
 
 import java.util.ArrayList;
@@ -14,16 +15,14 @@ import javax.xml.bind.annotation.XmlAccessorType;
 import javax.xml.bind.annotation.XmlAttribute;
 import javax.xml.bind.annotation.XmlType;
 
+
 /**
- * Describes different types of citations. Equivalent to the flat file RX-, RG-,
- * RA-, RT- and RL-lines.
+ * Describes different types of citations.
+ *             Equivalent to the flat file RX-, RG-, RA-, RT- and RL-lines.
  * 
- * <p>
- * Java class for citationType complex type.
+ * <p>Java class for citationType complex type.
  * 
- * <p>
- * The following schema fragment specifies the expected content contained within
- * this class.
+ * <p>The following schema fragment specifies the expected content contained within this class.
  * 
  * <pre>
  * &lt;complexType name="citationType">
@@ -73,457 +72,456 @@ import javax.xml.bind.annotation.XmlType;
  * 
  */
 @XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(
-  name = "citationType",
-  propOrder =
-  { "title", "editorList", "authorList", "locator", "dbReference" })
-public class CitationType
-{
-
-  protected String title;
-
-  protected NameListType editorList;
-
-  protected NameListType authorList;
-
-  protected String locator;
-
-  protected List<DbReferenceType> dbReference;
-
-  @XmlAttribute(name = "type", required = true)
-  protected String type;
-
-  @XmlAttribute(name = "date")
-  protected String date;
-
-  @XmlAttribute(name = "name")
-  protected String name;
-
-  @XmlAttribute(name = "volume")
-  protected String volume;
-
-  @XmlAttribute(name = "first")
-  protected String first;
-
-  @XmlAttribute(name = "last")
-  protected String last;
-
-  @XmlAttribute(name = "publisher")
-  protected String publisher;
-
-  @XmlAttribute(name = "city")
-  protected String city;
-
-  @XmlAttribute(name = "db")
-  protected String db;
-
-  @XmlAttribute(name = "number")
-  protected String number;
-
-  @XmlAttribute(name = "institute")
-  protected String institute;
-
-  @XmlAttribute(name = "country")
-  protected String country;
-
-  /**
-   * Gets the value of the title property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getTitle()
-  {
-    return title;
-  }
-
-  /**
-   * Sets the value of the title property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setTitle(String value)
-  {
-    this.title = value;
-  }
-
-  /**
-   * Gets the value of the editorList property.
-   * 
-   * @return possible object is {@link NameListType }
-   * 
-   */
-  public NameListType getEditorList()
-  {
-    return editorList;
-  }
-
-  /**
-   * Sets the value of the editorList property.
-   * 
-   * @param value
-   *          allowed object is {@link NameListType }
-   * 
-   */
-  public void setEditorList(NameListType value)
-  {
-    this.editorList = value;
-  }
-
-  /**
-   * Gets the value of the authorList property.
-   * 
-   * @return possible object is {@link NameListType }
-   * 
-   */
-  public NameListType getAuthorList()
-  {
-    return authorList;
-  }
-
-  /**
-   * Sets the value of the authorList property.
-   * 
-   * @param value
-   *          allowed object is {@link NameListType }
-   * 
-   */
-  public void setAuthorList(NameListType value)
-  {
-    this.authorList = value;
-  }
-
-  /**
-   * Gets the value of the locator property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getLocator()
-  {
-    return locator;
-  }
-
-  /**
-   * Sets the value of the locator property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setLocator(String value)
-  {
-    this.locator = value;
-  }
-
-  /**
-   * Gets the value of the dbReference property.
-   * 
-   * <p>
-   * 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 <CODE>set</CODE> method
-   * for the dbReference property.
-   * 
-   * <p>
-   * For example, to add a new item, do as follows:
-   * 
-   * <pre>
-   * getDbReference().add(newItem);
-   * </pre>
-   * 
-   * 
-   * <p>
-   * Objects of the following type(s) are allowed in the list
-   * {@link DbReferenceType }
-   * 
-   * 
-   */
-  public List<DbReferenceType> getDbReference()
-  {
-    if (dbReference == null)
-    {
-      dbReference = new ArrayList<DbReferenceType>();
-    }
-    return this.dbReference;
-  }
-
-  /**
-   * Gets the value of the type property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getType()
-  {
-    return type;
-  }
-
-  /**
-   * Sets the value of the type property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setType(String value)
-  {
-    this.type = value;
-  }
-
-  /**
-   * Gets the value of the date property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getDate()
-  {
-    return date;
-  }
-
-  /**
-   * Sets the value of the date property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setDate(String value)
-  {
-    this.date = value;
-  }
-
-  /**
-   * Gets the value of the name property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getName()
-  {
-    return name;
-  }
-
-  /**
-   * Sets the value of the name property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setName(String value)
-  {
-    this.name = value;
-  }
-
-  /**
-   * Gets the value of the volume property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getVolume()
-  {
-    return volume;
-  }
-
-  /**
-   * Sets the value of the volume property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setVolume(String value)
-  {
-    this.volume = value;
-  }
-
-  /**
-   * Gets the value of the first property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getFirst()
-  {
-    return first;
-  }
-
-  /**
-   * Sets the value of the first property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setFirst(String value)
-  {
-    this.first = value;
-  }
-
-  /**
-   * Gets the value of the last property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getLast()
-  {
-    return last;
-  }
-
-  /**
-   * Sets the value of the last property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setLast(String value)
-  {
-    this.last = value;
-  }
-
-  /**
-   * Gets the value of the publisher property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getPublisher()
-  {
-    return publisher;
-  }
-
-  /**
-   * Sets the value of the publisher property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setPublisher(String value)
-  {
-    this.publisher = value;
-  }
-
-  /**
-   * Gets the value of the city property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getCity()
-  {
-    return city;
-  }
-
-  /**
-   * Sets the value of the city property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setCity(String value)
-  {
-    this.city = value;
-  }
-
-  /**
-   * Gets the value of the db property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getDb()
-  {
-    return db;
-  }
-
-  /**
-   * Sets the value of the db property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setDb(String value)
-  {
-    this.db = value;
-  }
-
-  /**
-   * Gets the value of the number property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getNumber()
-  {
-    return number;
-  }
-
-  /**
-   * Sets the value of the number property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setNumber(String value)
-  {
-    this.number = value;
-  }
-
-  /**
-   * Gets the value of the institute property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getInstitute()
-  {
-    return institute;
-  }
-
-  /**
-   * Sets the value of the institute property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setInstitute(String value)
-  {
-    this.institute = value;
-  }
-
-  /**
-   * Gets the value of the country property.
-   * 
-   * @return possible object is {@link String }
-   * 
-   */
-  public String getCountry()
-  {
-    return country;
-  }
-
-  /**
-   * Sets the value of the country property.
-   * 
-   * @param value
-   *          allowed object is {@link String }
-   * 
-   */
-  public void setCountry(String value)
-  {
-    this.country = value;
-  }
+@XmlType(name = "citationType", propOrder = {
+    "title",
+    "editorList",
+    "authorList",
+    "locator",
+    "dbReference"
+})
+public class CitationType {
+
+    protected String title;
+    protected NameListType editorList;
+    protected NameListType authorList;
+    protected String locator;
+    protected List<DbReferenceType> dbReference;
+    @XmlAttribute(name = "type", required = true)
+    protected String type;
+    @XmlAttribute(name = "date")
+    protected String date;
+    @XmlAttribute(name = "name")
+    protected String name;
+    @XmlAttribute(name = "volume")
+    protected String volume;
+    @XmlAttribute(name = "first")
+    protected String first;
+    @XmlAttribute(name = "last")
+    protected String last;
+    @XmlAttribute(name = "publisher")
+    protected String publisher;
+    @XmlAttribute(name = "city")
+    protected String city;
+    @XmlAttribute(name = "db")
+    protected String db;
+    @XmlAttribute(name = "number")
+    protected String number;
+    @XmlAttribute(name = "institute")
+    protected String institute;
+    @XmlAttribute(name = "country")
+    protected String country;
+
+    /**
+     * Gets the value of the title property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getTitle() {
+        return title;
+    }
+
+    /**
+     * Sets the value of the title property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setTitle(String value) {
+        this.title = value;
+    }
+
+    /**
+     * Gets the value of the editorList property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link NameListType }
+     *     
+     */
+    public NameListType getEditorList() {
+        return editorList;
+    }
+
+    /**
+     * Sets the value of the editorList property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link NameListType }
+     *     
+     */
+    public void setEditorList(NameListType value) {
+        this.editorList = value;
+    }
+
+    /**
+     * Gets the value of the authorList property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link NameListType }
+     *     
+     */
+    public NameListType getAuthorList() {
+        return authorList;
+    }
+
+    /**
+     * Sets the value of the authorList property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link NameListType }
+     *     
+     */
+    public void setAuthorList(NameListType value) {
+        this.authorList = value;
+    }
+
+    /**
+     * Gets the value of the locator property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getLocator() {
+        return locator;
+    }
+
+    /**
+     * Sets the value of the locator property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setLocator(String value) {
+        this.locator = value;
+    }
+
+    /**
+     * Gets the value of the dbReference property.
+     * 
+     * <p>
+     * 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 <CODE>set</CODE> method for the dbReference property.
+     * 
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getDbReference().add(newItem);
+     * </pre>
+     * 
+     * 
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link DbReferenceType }
+     * 
+     * 
+     */
+    public List<DbReferenceType> getDbReference() {
+        if (dbReference == null) {
+            dbReference = new ArrayList<DbReferenceType>();
+        }
+        return this.dbReference;
+    }
+
+    /**
+     * Gets the value of the type property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getType() {
+        return type;
+    }
+
+    /**
+     * Sets the value of the type property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setType(String value) {
+        this.type = value;
+    }
+
+    /**
+     * Gets the value of the date property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getDate() {
+        return date;
+    }
+
+    /**
+     * Sets the value of the date property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setDate(String value) {
+        this.date = value;
+    }
+
+    /**
+     * Gets the value of the name property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getName() {
+        return name;
+    }
+
+    /**
+     * Sets the value of the name property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setName(String value) {
+        this.name = value;
+    }
+
+    /**
+     * Gets the value of the volume property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getVolume() {
+        return volume;
+    }
+
+    /**
+     * Sets the value of the volume property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setVolume(String value) {
+        this.volume = value;
+    }
+
+    /**
+     * Gets the value of the first property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getFirst() {
+        return first;
+    }
+
+    /**
+     * Sets the value of the first property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setFirst(String value) {
+        this.first = value;
+    }
+
+    /**
+     * Gets the value of the last property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getLast() {
+        return last;
+    }
+
+    /**
+     * Sets the value of the last property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setLast(String value) {
+        this.last = value;
+    }
+
+    /**
+     * Gets the value of the publisher property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getPublisher() {
+        return publisher;
+    }
+
+    /**
+     * Sets the value of the publisher property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setPublisher(String value) {
+        this.publisher = value;
+    }
+
+    /**
+     * Gets the value of the city property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getCity() {
+        return city;
+    }
+
+    /**
+     * Sets the value of the city property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setCity(String value) {
+        this.city = value;
+    }
+
+    /**
+     * Gets the value of the db property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getDb() {
+        return db;
+    }
+
+    /**
+     * Sets the value of the db property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setDb(String value) {
+        this.db = value;
+    }
+
+    /**
+     * Gets the value of the number property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getNumber() {
+        return number;
+    }
+
+    /**
+     * Sets the value of the number property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setNumber(String value) {
+        this.number = value;
+    }
+
+    /**
+     * Gets the value of the institute property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getInstitute() {
+        return institute;
+    }
+
+    /**
+     * Sets the value of the institute property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setInstitute(String value) {
+        this.institute = value;
+    }
+
+    /**
+     * Gets the value of the country property.
+     * 
+     * @return
+     *     possible object is
+     *     {@link String }
+     *     
+     */
+    public String getCountry() {
+        return country;
+    }
+
+    /**
+     * Sets the value of the country property.
+     * 
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *     
+     */
+    public void setCountry(String value) {
+        this.country = value;
+    }
 
 }