
eu.fbk.dkm.pikes.resources.util.semlink.vnfnroles.Vncls 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 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 = {
"roles"
})
@XmlRootElement(name = "vncls")
public class Vncls {
@XmlAttribute(name = "class", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String clazz;
@XmlAttribute(name = "fnframe", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String fnframe;
@XmlElement(required = true)
protected Roles roles;
/**
* Gets the value of the clazz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClazz() {
return clazz;
}
/**
* Sets the value of the clazz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClazz(String value) {
this.clazz = value;
}
/**
* Gets the value of the fnframe property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFnframe() {
return fnframe;
}
/**
* Sets the value of the fnframe property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFnframe(String value) {
this.fnframe = value;
}
/**
* Gets the value of the roles property.
*
* @return
* possible object is
* {@link Roles }
*
*/
public Roles getRoles() {
return roles;
}
/**
* Sets the value of the roles property.
*
* @param value
* allowed object is
* {@link Roles }
*
*/
public void setRoles(Roles value) {
this.roles = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy