Class | Line # | Actions | |||
---|---|---|---|---|---|
ROOT | 41 | 4 | 4 |
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: 2023.05.13 at 06:58:42 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 | * <complexType> | |
25 | * <complexContent> | |
26 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
27 | * <choice> | |
28 | * <element name="entrySet" type="{}EntrySetType"/> | |
29 | * <element name="entry" type="{}EntryType"/> | |
30 | * </choice> | |
31 | * </restriction> | |
32 | * </complexContent> | |
33 | * </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 | 2 | public EntrySetType getEntrySet() |
55 | { | |
56 | 2 | 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 | 0 | public void setEntrySet(EntrySetType value) |
67 | { | |
68 | 0 | 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 | 4 | public EntryType getEntry() |
78 | { | |
79 | 4 | 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 | 0 | public void setEntry(EntryType value) |
90 | { | |
91 | 0 | this.entry = value; |
92 | } | |
93 | ||
94 | } |