![JAR search and dependency download from the Maven repository](/logo.png)
org.opencyc.ws.xsd.lightweightresultset.Term Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cyc-lightweightresultset Show documentation
Show all versions of cyc-lightweightresultset Show documentation
JAXB bindings for lightweightresultset.xsd: a schema for terse, minimal result sets. It was
originally developed to provide auto-completion suggestions for partially-typed concept
NL/constants in the Cyc browser, but has proven to be generally useful.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.02.04 at 05:13:36 PM CST
//
package org.opencyc.ws.xsd.lightweightresultset;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Term complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Term">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="cycl" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="nl" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="hlId" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="disambigString" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Term")
public class Term
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlAttribute(name = "cycl", required = true)
protected String cycl;
@XmlAttribute(name = "nl", required = true)
protected String nl;
@XmlAttribute(name = "hlId")
protected String hlId;
@XmlAttribute(name = "disambigString")
protected String disambigString;
/**
* Gets the value of the cycl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCycl() {
return cycl;
}
/**
* Sets the value of the cycl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCycl(String value) {
this.cycl = value;
}
/**
* Gets the value of the nl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNl() {
return nl;
}
/**
* Sets the value of the nl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNl(String value) {
this.nl = value;
}
/**
* Gets the value of the hlId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHlId() {
return hlId;
}
/**
* Sets the value of the hlId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHlId(String value) {
this.hlId = value;
}
/**
* Gets the value of the disambigString property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisambigString() {
return disambigString;
}
/**
* Sets the value of the disambigString property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisambigString(String value) {
this.disambigString = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy