
eu.fbk.dkm.pikes.resources.util.propbank.Rel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pikes-resources Show documentation
Show all versions of pikes-resources Show documentation
A collection of Java classes for accessing and querying a number of NLP resources.
The newest version!
//
// Questo file è stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.8-b130911.1802
// Vedere http://java.sun.com/xml/jaxb
// Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine.
// Generato il: 2015.05.07 alle 12:32:49 PM CEST
//
package eu.fbk.dkm.pikes.resources.util.propbank;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = {
"value" }) @XmlRootElement(name = "rel") public class Rel {
@XmlAttribute(name = "f") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String f;
@XmlValue protected String value;
/**
* Recupera il valore della proprietà f.
*
* @return possible object is
* {@link String }
*/
public String getF() {
return f;
}
/**
* Imposta il valore della proprietà f.
*
* @param value allowed object is
* {@link String }
*/
public void setF(String value) {
this.f = value;
}
/**
* Recupera il valore della proprietà value.
*
* @return possible object is
* {@link String }
*/
public String getvalue() {
return value;
}
/**
* Imposta il valore della proprietà value.
*
* @param value allowed object is
* {@link String }
*/
public void setvalue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy