// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.06.26 at 01:04:00 PM CEST // package xmllexicon; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for RawLexicon complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RawLexicon"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="relations" type="{}TypeRelations"/> * <element name="entries" type="{}Entries"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RawLexicon", propOrder = { "relations", "entries" }) public class RawLexicon { @XmlElement(required = true) protected TypeRelations relations; @XmlElement(required = true) protected Entries entries; /** * Gets the value of the relations property. * * @return * possible object is * {@link TypeRelations } * */ public TypeRelations getRelations() { return relations; } /** * Sets the value of the relations property. * * @param value * allowed object is * {@link TypeRelations } * */ public void setRelations(TypeRelations value) { this.relations = value; } /** * Gets the value of the entries property. * * @return * possible object is * {@link Entries } * */ public Entries getEntries() { return entries; } /** * Sets the value of the entries property. * * @param value * allowed object is * {@link Entries } * */ public void setEntries(Entries value) { this.entries = value; } }