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