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: 2016.02.15 at 02:35:27 PM CET 
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       * Gets the value of the value property.
33       * 
34       * @return
35       *     possible object is
36       *     {@link String }
37       *     
38       */
39      public String getvalue() {
40          return value;
41      }
42  
43      /**
44       * Sets the value of the value property.
45       * 
46       * @param value
47       *     allowed object is
48       *     {@link String }
49       *     
50       */
51      public void setvalue(String value) {
52          this.value = value;
53      }
54  
55  }