JAL-3785 JAL- Merge branch 'bug/JAL-3785autoOverviewTitle' into 2_11_2_develop
[jalview.git] / src / jalview / xml / binding / embl / ROOT.java
1 //
2 // This file was generated by the Eclipse Implementation of JAXB, v2.3.3 
3 // See https://eclipse-ee4j.github.io/jaxb-ri 
4 // Any modifications to this file will be lost upon recompilation of the source schema. 
5 // Generated on: 2022.02.07 at 04:45:21 PM GMT 
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  * <complexType>
24  *   <complexContent>
25  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26  *       <choice>
27  *         <element name="entrySet" type="{}EntrySetType"/>
28  *         <element name="entry" type="{}EntryType"/>
29  *       </choice>
30  *     </restriction>
31  *   </complexContent>
32  * </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 }