
fr.inria.edelweiss.rif.xml.schema.Location 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;
/**
* 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>
* <element name="Const" type="{http://www.w3.org/2007/rif#}IRICONST.type"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"_const"
})
@XmlRootElement(name = "location")
public class Location {
@XmlElement(name = "Const", required = true)
protected IRICONSTType _const;
/**
* Gets the value of the const property.
*
* @return
* possible object is
* {@link IRICONSTType }
*
*/
public IRICONSTType getConst() {
return _const;
}
/**
* Sets the value of the const property.
*
* @param value
* allowed object is
* {@link IRICONSTType }
*
*/
public void setConst(IRICONSTType value) {
this._const = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy