1   //
2   // Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.8-b130911.1802 
3   // Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine. 
5   // Generato il: 2015.05.07 alle 12:32:49 PM CEST 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.ontonotes.frames;
10  
11  import javax.xml.bind.annotation.*;
12  import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
13  import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
14  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
15  
16  
17  /**
18   * 
19   */
20  @XmlAccessorType(XmlAccessType.FIELD)
21  @XmlType(name = "")
22  @XmlRootElement(name = "vnrole")
23  public class Vnrole {
24  
25      @XmlAttribute(name = "vncls", required = true)
26      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
27      protected String vncls;
28      @XmlAttribute(name = "vntheta", required = true)
29      @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
30      protected String vntheta;
31  
32      /**
33       * Recupera il valore della proprietà vncls.
34       * 
35       * @return
36       *     possible object is
37       *     {@link String }
38       *     
39       */
40      public String getVncls() {
41          return vncls;
42      }
43  
44      /**
45       * Imposta il valore della proprietà vncls.
46       * 
47       * @param value
48       *     allowed object is
49       *     {@link String }
50       *     
51       */
52      public void setVncls(String value) {
53          this.vncls = value;
54      }
55  
56      /**
57       * Recupera il valore della proprietà vntheta.
58       * 
59       * @return
60       *     possible object is
61       *     {@link String }
62       *     
63       */
64      public String getVntheta() {
65          return vntheta;
66      }
67  
68      /**
69       * Imposta il valore della proprietà vntheta.
70       * 
71       * @param value
72       *     allowed object is
73       *     {@link String }
74       *     
75       */
76      public void setVntheta(String value) {
77          this.vntheta = value;
78      }
79  
80  }