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.XmlRootElement;
14 import javax.xml.bind.annotation.XmlType;
15 import javax.xml.bind.annotation.XmlValue;
16
17
18
19
20
21 @XmlAccessorType(XmlAccessType.FIELD)
22 @XmlType(name = "", propOrder = {
23 "value"
24 })
25 @XmlRootElement(name = "EXAMPLE")
26 public class EXAMPLE {
27
28 @XmlValue
29 protected String value;
30
31
32
33
34
35
36
37
38
39 public String getvalue() {
40 return value;
41 }
42
43
44
45
46
47
48
49
50
51 public void setvalue(String value) {
52 this.value = value;
53 }
54
55 }