// // 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.XmlID; import javax.xml.bind.annotation.XmlIDREF; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "tlink") public class Tlink { @XmlAttribute(name = "id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; @XmlAttribute(name = "from", required = true) protected String from; @XmlAttribute(name = "to", required = true) protected String to; @XmlAttribute(name = "fromType", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String fromType; @XmlAttribute(name = "toType", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String toType; @XmlAttribute(name = "relType", required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String relType; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public String getTo() { return to; } public void setTo(String to) { this.to = to; } /** * Gets the value of the fromType property. * * @return * possible object is * {@link String } * */ public String getFromType() { return fromType; } /** * Sets the value of the fromType property. * * @param value * allowed object is * {@link String } * */ public void setFromType(String value) { this.fromType = value; } /** * Gets the value of the toType property. * * @return * possible object is * {@link String } * */ public String getToType() { return toType; } /** * Sets the value of the toType property. * * @param value * allowed object is * {@link String } * */ public void setToType(String value) { this.toType = value; } /** * Gets the value of the relType property. * * @return * possible object is * {@link String } * */ public String getRelType() { return relType; } /** * Sets the value of the relType property. * * @param value * allowed object is * {@link String } * */ public void setRelType(String value) { this.relType = value; } }