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 java.util.ArrayList; 13 import java.util.List; 14 15 16 /** 17 * 18 */ 19 @XmlAccessorType(XmlAccessType.FIELD) 20 @XmlType(name = "", propOrder = { 21 "grSense", 22 "wn", 23 "omega", 24 "pb", 25 "vn", 26 "fn" 27 }) 28 @XmlRootElement(name = "mappings") 29 public class Mappings { 30 31 @XmlElement(name = "gr_sense") 32 protected String grSense; 33 @XmlElement(required = true) 34 protected List<Wn> wn; 35 @XmlElement(required = true) 36 protected String omega; 37 @XmlElement(required = true) 38 protected String pb; 39 protected String vn; 40 protected String fn; 41 42 /** 43 * Recupera il valore della proprietà grSense. 44 * 45 * @return 46 * possible object is 47 * {@link String } 48 * 49 */ 50 public String getGrSense() { 51 return grSense; 52 } 53 54 /** 55 * Imposta il valore della proprietà grSense. 56 * 57 * @param value 58 * allowed object is 59 * {@link String } 60 * 61 */ 62 public void setGrSense(String value) { 63 this.grSense = value; 64 } 65 66 /** 67 * Gets the value of the wn property. 68 * 69 * <p> 70 * This accessor method returns a reference to the live list, 71 * not a snapshot. Therefore any modification you make to the 72 * returned list will be present inside the JAXB object. 73 * This is why there is not a <CODE>set</CODE> method for the wn property. 74 * 75 * <p> 76 * For example, to add a new item, do as follows: 77 * <pre> 78 * getWn().add(newItem); 79 * </pre> 80 * 81 * 82 * <p> 83 * Objects of the following type(s) are allowed in the list 84 * {@link Wn } 85 * 86 * 87 */ 88 public List<Wn> getWn() { 89 if (wn == null) { 90 wn = new ArrayList<Wn>(); 91 } 92 return this.wn; 93 } 94 95 /** 96 * Recupera il valore della proprietà omega. 97 * 98 * @return 99 * possible object is 100 * {@link String } 101 * 102 */ 103 public String getOmega() { 104 return omega; 105 } 106 107 /** 108 * Imposta il valore della proprietà omega. 109 * 110 * @param value 111 * allowed object is 112 * {@link String } 113 * 114 */ 115 public void setOmega(String value) { 116 this.omega = value; 117 } 118 119 /** 120 * Recupera il valore della proprietà pb. 121 * 122 * @return 123 * possible object is 124 * {@link String } 125 * 126 */ 127 public String getPb() { 128 return pb; 129 } 130 131 /** 132 * Imposta il valore della proprietà pb. 133 * 134 * @param value 135 * allowed object is 136 * {@link String } 137 * 138 */ 139 public void setPb(String value) { 140 this.pb = value; 141 } 142 143 /** 144 * Recupera il valore della proprietà vn. 145 * 146 * @return 147 * possible object is 148 * {@link String } 149 * 150 */ 151 public String getVn() { 152 return vn; 153 } 154 155 /** 156 * Imposta il valore della proprietà vn. 157 * 158 * @param value 159 * allowed object is 160 * {@link String } 161 * 162 */ 163 public void setVn(String value) { 164 this.vn = value; 165 } 166 167 /** 168 * Recupera il valore della proprietà fn. 169 * 170 * @return 171 * possible object is 172 * {@link String } 173 * 174 */ 175 public String getFn() { 176 return fn; 177 } 178 179 /** 180 * Imposta il valore della proprietà fn. 181 * 182 * @param value 183 * allowed object is 184 * {@link String } 185 * 186 */ 187 public void setFn(String value) { 188 this.fn = value; 189 } 190 191 }