com.cyc.xml.query.ProofViewEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cyc-query-client Show documentation
Show all versions of cyc-query-client Show documentation
Query API implementation for requesting and handling answers to arbitrarily complex questions
posed to a Cyc server.
//
// 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: 2017.07.28 at 05:17:10 PM CDT
//
package com.cyc.xml.query;
import java.math.BigInteger;
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 com.cyc.baseclient.xml.cycml.Paraphrase;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element ref="{http://www.opencyc.org/xml/cycML/}paraphrase" minOccurs="0"/>
* <element ref="{http://www.opencyc.org/xml/proofView/}cycl" minOccurs="0"/>
* <element ref="{http://www.opencyc.org/xml/proofView/}silk" minOccurs="0"/>
* <element ref="{http://www.opencyc.org/xml/proofView/}content" minOccurs="0"/>
* <element ref="{http://www.opencyc.org/xml/proofView/}sub-entries" minOccurs="0"/>
* </all>
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
* <attribute name="expand-initially" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="object-type" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="abduced-support" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
@XmlRootElement(name = "proof-view-entry", namespace = "http://www.opencyc.org/xml/proofView/")
public class ProofViewEntry {
@XmlElement(namespace = "http://www.opencyc.org/xml/cycML/")
protected Paraphrase paraphrase;
@XmlElement(namespace = "http://www.opencyc.org/xml/proofView/")
protected String cycl;
@XmlElement(namespace = "http://www.opencyc.org/xml/proofView/")
protected String silk;
@XmlElement(namespace = "http://www.opencyc.org/xml/proofView/")
protected Content content;
@XmlElement(name = "sub-entries", namespace = "http://www.opencyc.org/xml/proofView/")
protected SubEntries subEntries;
@XmlAttribute(name = "id", required = true)
protected BigInteger id;
@XmlAttribute(name = "expand-initially")
protected Boolean expandInitially;
@XmlAttribute(name = "label")
protected String label;
@XmlAttribute(name = "object-type")
protected String objectType;
@XmlAttribute(name = "abduced-support")
protected Boolean abducedSupport;
/**
* Gets the value of the paraphrase property.
*
* @return
* possible object is
* {@link Paraphrase }
*
*/
public Paraphrase getParaphrase() {
return paraphrase;
}
/**
* Sets the value of the paraphrase property.
*
* @param value
* allowed object is
* {@link Paraphrase }
*
*/
public void setParaphrase(Paraphrase value) {
this.paraphrase = value;
}
/**
* 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 silk property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSilk() {
return silk;
}
/**
* Sets the value of the silk property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSilk(String value) {
this.silk = value;
}
/**
* Gets the value of the content property.
*
* @return
* possible object is
* {@link Content }
*
*/
public Content getContent() {
return content;
}
/**
* Sets the value of the content property.
*
* @param value
* allowed object is
* {@link Content }
*
*/
public void setContent(Content value) {
this.content = value;
}
/**
* Gets the value of the subEntries property.
*
* @return
* possible object is
* {@link SubEntries }
*
*/
public SubEntries getSubEntries() {
return subEntries;
}
/**
* Sets the value of the subEntries property.
*
* @param value
* allowed object is
* {@link SubEntries }
*
*/
public void setSubEntries(SubEntries value) {
this.subEntries = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setId(BigInteger value) {
this.id = value;
}
/**
* Gets the value of the expandInitially property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isExpandInitially() {
return expandInitially;
}
/**
* Sets the value of the expandInitially property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setExpandInitially(Boolean value) {
this.expandInitially = value;
}
/**
* Gets the value of the label property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Sets the value of the label property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Gets the value of the objectType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getObjectType() {
return objectType;
}
/**
* Sets the value of the objectType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setObjectType(String value) {
this.objectType = value;
}
/**
* Gets the value of the abducedSupport property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAbducedSupport() {
return abducedSupport;
}
/**
* Sets the value of the abducedSupport property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAbducedSupport(Boolean value) {
this.abducedSupport = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy