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: 2015.11.12 at 03:35:52 PM CET 
6   //
7   
8   
9   package eu.fbk.dkm.pikes.resources.util.onsenses;
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 = "WORD_META")
26  public class WORDMETA {
27  
28      @XmlAttribute(name = "authors", required = true)
29      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
30      protected String authors;
31      @XmlAttribute(name = "sample_score")
32      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
33      protected String sampleScore;
34  
35      /**
36       * Gets the value of the authors property.
37       * 
38       * @return
39       *     possible object is
40       *     {@link String }
41       *     
42       */
43      public String getAuthors() {
44          return authors;
45      }
46  
47      /**
48       * Sets the value of the authors property.
49       * 
50       * @param value
51       *     allowed object is
52       *     {@link String }
53       *     
54       */
55      public void setAuthors(String value) {
56          this.authors = value;
57      }
58  
59      /**
60       * Gets the value of the sampleScore property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link String }
65       *     
66       */
67      public String getSampleScore() {
68          return sampleScore;
69      }
70  
71      /**
72       * Sets the value of the sampleScore property.
73       * 
74       * @param value
75       *     allowed object is
76       *     {@link String }
77       *     
78       */
79      public void setSampleScore(String value) {
80          this.sampleScore = value;
81      }
82  
83  }