// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // 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: 2011.05.20 at 10:10:37 AM CEST // package org.jgrasstools.grass.dtd64; 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; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "gisprompt") public class Gisprompt { @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String age; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String element; @XmlAttribute(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String prompt; /** * Gets the value of the age property. * * @return * possible object is * {@link String } * */ public String getAge() { return age; } /** * Sets the value of the age property. * * @param value * allowed object is * {@link String } * */ public void setAge(String value) { this.age = value; } /** * Gets the value of the element property. * * @return * possible object is * {@link String } * */ public String getElement() { return element; } /** * Sets the value of the element property. * * @param value * allowed object is * {@link String } * */ public void setElement(String value) { this.element = value; } /** * Gets the value of the prompt property. * * @return * possible object is * {@link String } * */ public String getPrompt() { return prompt; } /** * Sets the value of the prompt property. * * @param value * allowed object is * {@link String } * */ public void setPrompt(String value) { this.prompt = value; } }