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   package eu.fbk.dkm.pikes.resources.util.propbank;
9   
10  import javax.xml.bind.annotation.*;
11  import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
12  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
13  
14  /**
15   *
16   */
17  @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "inflection") public class Inflection {
18  
19      @XmlAttribute(name = "person") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String person;
20      @XmlAttribute(name = "tense") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String tense;
21      @XmlAttribute(name = "aspect") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String aspect;
22      @XmlAttribute(name = "voice") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String voice;
23      @XmlAttribute(name = "form") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String form;
24  
25      /**
26       * Recupera il valore della proprietà person.
27       *
28       * @return possible object is
29       * {@link String }
30       */
31      public String getPerson() {
32          if (person == null) {
33              return "ns";
34          } else {
35              return person;
36          }
37      }
38  
39      /**
40       * Imposta il valore della proprietà person.
41       *
42       * @param value allowed object is
43       *              {@link String }
44       */
45      public void setPerson(String value) {
46          this.person = value;
47      }
48  
49      /**
50       * Recupera il valore della proprietà tense.
51       *
52       * @return possible object is
53       * {@link String }
54       */
55      public String getTense() {
56          if (tense == null) {
57              return "ns";
58          } else {
59              return tense;
60          }
61      }
62  
63      /**
64       * Imposta il valore della proprietà tense.
65       *
66       * @param value allowed object is
67       *              {@link String }
68       */
69      public void setTense(String value) {
70          this.tense = value;
71      }
72  
73      /**
74       * Recupera il valore della proprietà aspect.
75       *
76       * @return possible object is
77       * {@link String }
78       */
79      public String getAspect() {
80          if (aspect == null) {
81              return "ns";
82          } else {
83              return aspect;
84          }
85      }
86  
87      /**
88       * Imposta il valore della proprietà aspect.
89       *
90       * @param value allowed object is
91       *              {@link String }
92       */
93      public void setAspect(String value) {
94          this.aspect = value;
95      }
96  
97      /**
98       * Recupera il valore della proprietà voice.
99       *
100      * @return possible object is
101      * {@link String }
102      */
103     public String getVoice() {
104         if (voice == null) {
105             return "ns";
106         } else {
107             return voice;
108         }
109     }
110 
111     /**
112      * Imposta il valore della proprietà voice.
113      *
114      * @param value allowed object is
115      *              {@link String }
116      */
117     public void setVoice(String value) {
118         this.voice = value;
119     }
120 
121     /**
122      * Recupera il valore della proprietà form.
123      *
124      * @return possible object is
125      * {@link String }
126      */
127     public String getForm() {
128         if (form == null) {
129             return "ns";
130         } else {
131             return form;
132         }
133     }
134 
135     /**
136      * Imposta il valore della proprietà form.
137      *
138      * @param value allowed object is
139      *              {@link String }
140      */
141     public void setForm(String value) {
142         this.form = value;
143     }
144 
145 }