// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.12.20 at 05:04:39 PM JST // package gen.core.segmentation; 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 ref="{http://www.lisa.org/srx20}languagerules"/>
 *         <element ref="{http://www.lisa.org/srx20}maprules"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "languagerules", "maprules" }) @XmlRootElement(name = "body") public class Body { @XmlElement(required = true) protected Languagerules languagerules; @XmlElement(required = true) protected Maprules maprules; /** * Gets the value of the languagerules property. * * @return * possible object is * {@link Languagerules } * */ public Languagerules getLanguagerules() { return languagerules; } /** * Sets the value of the languagerules property. * * @param value * allowed object is * {@link Languagerules } * */ public void setLanguagerules(Languagerules value) { this.languagerules = value; } /** * Gets the value of the maprules property. * * @return * possible object is * {@link Maprules } * */ public Maprules getMaprules() { return maprules; } /** * Sets the value of the maprules property. * * @param value * allowed object is * {@link Maprules } * */ public void setMaprules(Maprules value) { this.maprules = value; } }