1
2
3
4
5
6
7
8
9 package eu.fbk.dkm.premon.premonitor.verbnet;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
16 import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18
19
20
21
22
23 @XmlAccessorType(XmlAccessType.FIELD)
24 @XmlType(name = "")
25 @XmlRootElement(name = "SELRESTR")
26 public class SELRESTR {
27
28 @XmlAttribute(name = "Value", required = true)
29 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
30 protected String value;
31 @XmlAttribute(name = "type", required = true)
32 @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
33 protected String type;
34
35
36
37
38
39
40
41
42
43 public String getValue() {
44 return value;
45 }
46
47
48
49
50
51
52
53
54
55 public void setValue(String value) {
56 this.value = value;
57 }
58
59
60
61
62
63
64
65
66
67 public String getType() {
68 return type;
69 }
70
71
72
73
74
75
76
77
78
79 public void setType(String value) {
80 this.type = value;
81 }
82
83 }