// // 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.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "span" }) @XmlRootElement(name = "statement_source") public class StatementSource { @XmlElement(required = true) protected Span span; /** * Gets the value of the span property. * * @return * possible object is * {@link Span } * */ public Span getSpan() { return span; } /** * Sets the value of the span property. * * @param value * allowed object is * {@link Span } * */ public void setSpan(Span value) { this.span = value; } }