JAL-3785 JAL- Merge branch 'bug/JAL-3785autoOverviewTitle' into 2_11_2_develop
[jalview.git] / src / jalview / xml / binding / embl / EntrySetType.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 java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlType;
17
18
19 /**
20  * <p>Java class for EntrySetType complex type.
21  * 
22  * <p>The following schema fragment specifies the expected content contained within this class.
23  * 
24  * <pre>
25  * <complexType name="EntrySetType">
26  *   <complexContent>
27  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28  *       <sequence maxOccurs="unbounded">
29  *         <element name="entry" type="{}EntryType"/>
30  *       </sequence>
31  *     </restriction>
32  *   </complexContent>
33  * </complexType>
34  * </pre>
35  * 
36  * 
37  */
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "EntrySetType", propOrder = {
40     "entry"
41 })
42 public class EntrySetType {
43
44     @XmlElement(required = true)
45     protected List<EntryType> entry;
46
47     /**
48      * Gets the value of the entry property.
49      * 
50      * &lt;p&gt;
51      * This accessor method returns a reference to the live list,
52      * not a snapshot. Therefore any modification you make to the
53      * returned list will be present inside the JAXB object.
54      * This is why there is not a &lt;CODE&gt;set&lt;/CODE&gt; method for the entry property.
55      * 
56      * &lt;p&gt;
57      * For example, to add a new item, do as follows:
58      * &lt;pre&gt;
59      *    getEntry().add(newItem);
60      * &lt;/pre&gt;
61      * 
62      * 
63      * &lt;p&gt;
64      * Objects of the following type(s) are allowed in the list
65      * {@link EntryType }
66      * 
67      * 
68      */
69     public List<EntryType> getEntry() {
70         if (entry == null) {
71             entry = new ArrayList<EntryType>();
72         }
73         return this.entry;
74     }
75
76 }