// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.3-b01-fcs // 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: 2007.05.29 at 02:15:41 PM CEST // package converter; 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 entryType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="entryType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="string" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="desc" type="{}descType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "entryType", propOrder = { "string", "desc" }) public class EntryType { @XmlElement(required = true) protected String string; @XmlElement(required = true) protected DescType desc; /** * Gets the value of the string property. * * @return * possible object is * {@link String } * */ public String getString() { return string; } /** * Sets the value of the string property. * * @param value * allowed object is * {@link String } * */ public void setString(String value) { this.string = value; } /** * Gets the value of the desc property. * * @return * possible object is * {@link DescType } * */ public DescType getDesc() { return desc; } /** * Sets the value of the desc property. * * @param value * allowed object is * {@link DescType } * */ public void setDesc(DescType value) { this.desc = value; } }