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.premon.premonitor.propbank; 9 10 import javax.xml.bind.annotation.*; 11 12 /** 13 * 14 */ 15 @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { 16 "value" }) @XmlRootElement(name = "note") public class Note { 17 18 @XmlValue protected String value; 19 20 /** 21 * Recupera il valore della proprietà value. 22 * 23 * @return possible object is 24 * {@link String } 25 */ 26 public String getvalue() { 27 return value; 28 } 29 30 /** 31 * Imposta il valore della proprietà value. 32 * 33 * @param value allowed object is 34 * {@link String } 35 */ 36 public void setvalue(String value) { 37 this.value = value; 38 } 39 40 }