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:30 PM CEST 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.ontonotes.senses;
10  
11  import javax.xml.bind.annotation.*;
12  import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
13  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
14  
15  
16  /**
17   * 
18   */
19  @XmlAccessorType(XmlAccessType.FIELD)
20  @XmlType(name = "")
21  @XmlRootElement(name = "WORD_META")
22  public class WORDMETA {
23  
24      @XmlAttribute(name = "authors", required = true)
25      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
26      protected String authors;
27      @XmlAttribute(name = "sample_score")
28      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
29      protected String sampleScore;
30  
31      /**
32       * Recupera il valore della proprietà authors.
33       * 
34       * @return
35       *     possible object is
36       *     {@link String }
37       *     
38       */
39      public String getAuthors() {
40          return authors;
41      }
42  
43      /**
44       * Imposta il valore della proprietà authors.
45       * 
46       * @param value
47       *     allowed object is
48       *     {@link String }
49       *     
50       */
51      public void setAuthors(String value) {
52          this.authors = value;
53      }
54  
55      /**
56       * Recupera il valore della proprietà sampleScore.
57       * 
58       * @return
59       *     possible object is
60       *     {@link String }
61       *     
62       */
63      public String getSampleScore() {
64          return sampleScore;
65      }
66  
67      /**
68       * Imposta il valore della proprietà sampleScore.
69       * 
70       * @param value
71       *     allowed object is
72       *     {@link String }
73       *     
74       */
75      public void setSampleScore(String value) {
76          this.sampleScore = value;
77      }
78  
79  }