// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 // 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: 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.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="languagerulename" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="languagepattern" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "languagemap") public class Languagemap { @XmlAttribute(required = true) protected String languagerulename; @XmlAttribute(required = true) protected String languagepattern; /** * Gets the value of the languagerulename property. * * @return * possible object is * {@link String } * */ public String getLanguagerulename() { return languagerulename; } /** * Sets the value of the languagerulename property. * * @param value * allowed object is * {@link String } * */ public void setLanguagerulename(String value) { this.languagerulename = value; } /** * Gets the value of the languagepattern property. * * @return * possible object is * {@link String } * */ public String getLanguagepattern() { return languagepattern; } /** * Sets the value of the languagepattern property. * * @param value * allowed object is * {@link String } * */ public void setLanguagepattern(String value) { this.languagepattern = value; } }