80cdfe52013e1e9aac19a1584ac6f29bdaecd83d
[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
9 package jalview.xml.binding.uniprot;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlType;
15
16
17 /**
18  * Describes the source of the evidence, when it is not assigned by UniProt, but imported from an external database.
19  * 
20  * <p>Java class for importedFromType complex type.
21  * 
22  * <p>The following schema fragment specifies the expected content contained within this class.
23  * 
24  * <pre>
25  * &lt;complexType name="importedFromType">
26  *   &lt;complexContent>
27  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28  *       &lt;sequence>
29  *         &lt;element name="dbReference" type="{http://uniprot.org/uniprot}dbReferenceType"/>
30  *       &lt;/sequence>
31  *     &lt;/restriction>
32  *   &lt;/complexContent>
33  * &lt;/complexType>
34  * </pre>
35  * 
36  * 
37  */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "importedFromType", propOrder = {
40     "dbReference"
41 })
42 public class ImportedFromType {
43
44     @XmlElement(required = true)
45     protected DbReferenceType dbReference;
46
47     /**
48      * Gets the value of the dbReference property.
49      * 
50      * @return
51      *     possible object is
52      *     {@link DbReferenceType }
53      *     
54      */
55     public DbReferenceType getDbReference() {
56         return dbReference;
57     }
58
59     /**
60      * Sets the value of the dbReference property.
61      * 
62      * @param value
63      *     allowed object is
64      *     {@link DbReferenceType }
65      *     
66      */
67     public void setDbReference(DbReferenceType value) {
68         this.dbReference = value;
69     }
70
71 }