All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.inria.edelweiss.rif.xml.schema.Sub Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.08.24 at 10:15:40 AM CEST 
//


package fr.inria.edelweiss.rif.xml.schema;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

import fr.inria.edelweiss.rif.ast.Term;


/**
 * 

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">
 *       <sequence>
 *         <group ref="{http://www.w3.org/2007/rif#}TERM"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "_const", "var", "expr", "list", "external" }) @XmlRootElement(name = "sub") public class Sub { @XmlElement(name = "Const") protected Const _const; @XmlElement(name = "Var") protected Var var; @XmlElement(name = "Expr") protected Expr expr; @XmlElement(name = "List") protected List list; @XmlElement(name = "External") protected ExternalTERMType external; /** * Gets the value of the const property. * * @return * possible object is * {@link Const } * */ public Const getConst() { return _const; } /** * Sets the value of the const property. * * @param value * allowed object is * {@link Const } * */ public void setConst(Const value) { this._const = value; } /** * Gets the value of the var property. * * @return * possible object is * {@link Var } * */ public Var getVar() { return var; } /** * Sets the value of the var property. * * @param value * allowed object is * {@link Var } * */ public void setVar(Var value) { this.var = value; } /** * Gets the value of the expr property. * * @return * possible object is * {@link Expr } * */ public Expr getExpr() { return expr; } /** * Sets the value of the expr property. * * @param value * allowed object is * {@link Expr } * */ public void setExpr(Expr value) { this.expr = value; } /** * Gets the value of the list property. * * @return * possible object is * {@link List } * */ public List getList() { return list; } /** * Sets the value of the list property. * * @param value * allowed object is * {@link List } * */ public void setList(List value) { this.list = value; } /** * Gets the value of the external property. * * @return * possible object is * {@link ExternalTERMType } * */ public ExternalTERMType getExternal() { return external; } /** * Sets the value of the external property. * * @param value * allowed object is * {@link ExternalTERMType } * */ public void setExternal(ExternalTERMType value) { this.external = value; } public fr.inria.edelweiss.rif.ast.Term XML2AST() { // TODO Auto-generated method stub return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy