JAL-3116 parse EMBL XML with JAXB (todo: update unit tests)
[jalview.git] / src / jalview / xml / binding / embl / ROOT.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: 2018.09.14 at 02:46:00 PM BST 
6 //
7
8
9 package jalview.xml.binding.embl;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlRootElement;
14 import javax.xml.bind.annotation.XmlType;
15
16
17 /**
18  * <p>Java class for anonymous complex type.
19  * 
20  * <p>The following schema fragment specifies the expected content contained within this class.
21  * 
22  * <pre>
23  * &lt;complexType>
24  *   &lt;complexContent>
25  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26  *       &lt;choice>
27  *         &lt;element name="entrySet" type="{}EntrySetType"/>
28  *         &lt;element name="entry" type="{}EntryType"/>
29  *       &lt;/choice>
30  *     &lt;/restriction>
31  *   &lt;/complexContent>
32  * &lt;/complexType>
33  * </pre>
34  * 
35  * 
36  */
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "", propOrder = {
39     "entrySet",
40     "entry"
41 })
42 @XmlRootElement(name = "ROOT")
43 public class ROOT {
44
45     protected EntrySetType entrySet;
46     protected EntryType entry;
47
48     /**
49      * Gets the value of the entrySet property.
50      * 
51      * @return
52      *     possible object is
53      *     {@link EntrySetType }
54      *     
55      */
56     public EntrySetType getEntrySet() {
57         return entrySet;
58     }
59
60     /**
61      * Sets the value of the entrySet property.
62      * 
63      * @param value
64      *     allowed object is
65      *     {@link EntrySetType }
66      *     
67      */
68     public void setEntrySet(EntrySetType value) {
69         this.entrySet = value;
70     }
71
72     /**
73      * Gets the value of the entry property.
74      * 
75      * @return
76      *     possible object is
77      *     {@link EntryType }
78      *     
79      */
80     public EntryType getEntry() {
81         return entry;
82     }
83
84     /**
85      * Sets the value of the entry property.
86      * 
87      * @param value
88      *     allowed object is
89      *     {@link EntryType }
90      *     
91      */
92     public void setEntry(EntryType value) {
93         this.entry = value;
94     }
95
96 }