
eu.fbk.dkm.pikes.resources.util.onsenses.WORDMETA 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!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.11.12 at 03:35:52 PM CET
//
package eu.fbk.dkm.pikes.resources.util.onsenses;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "WORD_META")
public class WORDMETA {
@XmlAttribute(name = "authors", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String authors;
@XmlAttribute(name = "sample_score")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String sampleScore;
/**
* Gets the value of the authors property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthors() {
return authors;
}
/**
* Sets the value of the authors property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthors(String value) {
this.authors = value;
}
/**
* Gets the value of the sampleScore property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSampleScore() {
return sampleScore;
}
/**
* Sets the value of the sampleScore property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSampleScore(String value) {
this.sampleScore = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy