
eu.fbk.dkm.pikes.resources.util.semlink.vnfnroles.SemLinkRolesRoot 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.13 at 04:07:35 PM CET
//
package eu.fbk.dkm.pikes.resources.util.semlink.vnfnroles;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
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 = "", propOrder = {
"vncls"
})
@XmlRootElement(name = "verbnetRoles-framenetFEs_RoleMappingData")
public class SemLinkRolesRoot {
@XmlAttribute(name = "date")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String date;
@XmlElement(required = true)
protected List vncls;
/**
* Gets the value of the date property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDate() {
return date;
}
/**
* Sets the value of the date property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDate(String value) {
this.date = value;
}
/**
* Gets the value of the vncls property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the vncls property.
*
*
* For example, to add a new item, do as follows:
*
* getVncls().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Vncls }
*
*
*/
public List getVncls() {
if (vncls == null) {
vncls = new ArrayList();
}
return this.vncls;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy