// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.08.03 at 06:08:32 PM CEST // package eu.fbk.knowledgestore.populator.naf.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlIDREF; 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 = "factvalue") public class Factvalue { @XmlAttribute(name = "id", required = true) @XmlIDREF protected Object id; @XmlAttribute(name = "prediction", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String prediction; @XmlAttribute(name = "confidence") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String confidence; /** * Gets the value of the id property. * * @return * possible object is * {@link Object } * */ public Object getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Object } * */ public void setId(Object value) { this.id = value; } /** * Gets the value of the prediction property. * * @return * possible object is * {@link String } * */ public String getPrediction() { return prediction; } /** * Sets the value of the prediction property. * * @param value * allowed object is * {@link String } * */ public void setPrediction(String value) { this.prediction = value; } /** * Gets the value of the confidence property. * * @return * possible object is * {@link String } * */ public String getConfidence() { return confidence; } /** * Sets the value of the confidence property. * * @param value * allowed object is * {@link String } * */ public void setConfidence(String value) { this.confidence = value; } }