// // 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 = "target") public class Target { @XmlAttribute(name = "id", required = true) @XmlIDREF protected Object id; @XmlAttribute(name = "head") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String head; /** * 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 head property. * * @return * possible object is * {@link String } * */ public String getHead() { return head; } /** * Sets the value of the head property. * * @param value * allowed object is * {@link String } * */ public void setHead(String value) { this.head = value; } }