1
2
3
4
5
6
7
8
9 package eu.fbk.dkm.premon.premonitor.verbnet;
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.XmlAttribute;
16 import javax.xml.bind.annotation.XmlElement;
17 import javax.xml.bind.annotation.XmlElements;
18 import javax.xml.bind.annotation.XmlRootElement;
19 import javax.xml.bind.annotation.XmlType;
20 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
21 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
22
23
24
25
26
27 @XmlAccessorType(XmlAccessType.FIELD)
28 @XmlType(name = "", propOrder = {
29 "selrestrOrSELRESTRS"
30 })
31 @XmlRootElement(name = "SELRESTRS")
32 public class SELRESTRS {
33
34 @XmlAttribute(name = "logic")
35 @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
36 protected String logic;
37 @XmlElements({
38 @XmlElement(name = "SELRESTR", type = SELRESTR.class),
39 @XmlElement(name = "SELRESTRS", type = SELRESTRS.class)
40 })
41 protected List<Object> selrestrOrSELRESTRS;
42
43
44
45
46
47
48
49
50
51 public String getLogic() {
52 return logic;
53 }
54
55
56
57
58
59
60
61
62
63 public void setLogic(String value) {
64 this.logic = value;
65 }
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90 public List<Object> getSELRESTROrSELRESTRS() {
91 if (selrestrOrSELRESTRS == null) {
92 selrestrOrSELRESTRS = new ArrayList<Object>();
93 }
94 return this.selrestrOrSELRESTRS;
95 }
96
97 }