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