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 = "SENSE_META")
26  public class SENSEMETA {
27  
28      @XmlAttribute(name = "clarity")
29      @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
30      protected String clarity;
31  
32      /**
33       * Gets the value of the clarity property.
34       * 
35       * @return
36       *     possible object is
37       *     {@link String }
38       *     
39       */
40      public String getClarity() {
41          return clarity;
42      }
43  
44      /**
45       * Sets the value of the clarity property.
46       * 
47       * @param value
48       *     allowed object is
49       *     {@link String }
50       *     
51       */
52      public void setClarity(String value) {
53          this.clarity = value;
54      }
55  
56  }