JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / xml / binding / uniprot / ImportedFromType.java
1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4 // Any modifications to this file will be lost upon recompilation of the source schema. 
5 // Generated on: 2019.04.05 at 08:01:44 AM BST 
6 //
7
8 package jalview.xml.binding.uniprot;
9
10 import javax.xml.bind.annotation.XmlAccessType;
11 import javax.xml.bind.annotation.XmlAccessorType;
12 import javax.xml.bind.annotation.XmlElement;
13 import javax.xml.bind.annotation.XmlType;
14
15 /**
16  * Describes the source of the evidence, when it is not assigned by UniProt, but
17  * imported from an external database.
18  * 
19  * <p>
20  * Java class for importedFromType complex type.
21  * 
22  * <p>
23  * The following schema fragment specifies the expected content contained within
24  * this class.
25  * 
26  * <pre>
27  * &lt;complexType name="importedFromType">
28  *   &lt;complexContent>
29  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30  *       &lt;sequence>
31  *         &lt;element name="dbReference" type="{http://uniprot.org/uniprot}dbReferenceType"/>
32  *       &lt;/sequence>
33  *     &lt;/restriction>
34  *   &lt;/complexContent>
35  * &lt;/complexType>
36  * </pre>
37  * 
38  * 
39  */
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "importedFromType", propOrder = { "dbReference" })
42 public class ImportedFromType
43 {
44
45   @XmlElement(required = true)
46   protected DbReferenceType dbReference;
47
48   /**
49    * Gets the value of the dbReference property.
50    * 
51    * @return possible object is {@link DbReferenceType }
52    * 
53    */
54   public DbReferenceType getDbReference()
55   {
56     return dbReference;
57   }
58
59   /**
60    * Sets the value of the dbReference property.
61    * 
62    * @param value
63    *          allowed object is {@link DbReferenceType }
64    * 
65    */
66   public void setDbReference(DbReferenceType value)
67   {
68     this.dbReference = value;
69   }
70
71 }