// // 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.XmlElement; 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 = "", propOrder = { "description", "keydesc", "gisprompt", "_default", "values", "guisection" }) @XmlRootElement(name = "parameter") public class Parameter { @XmlAttribute(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String name; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String type; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String required; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String multiple; protected String description; protected Keydesc keydesc; protected Gisprompt gisprompt; @XmlElement(name = "default") protected String _default; protected Values values; protected String guisection; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { if (type == null) { return "string"; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the required property. * * @return * possible object is * {@link String } * */ public String getRequired() { if (required == null) { return "no"; } else { return required; } } /** * Sets the value of the required property. * * @param value * allowed object is * {@link String } * */ public void setRequired(String value) { this.required = value; } /** * Gets the value of the multiple property. * * @return * possible object is * {@link String } * */ public String getMultiple() { if (multiple == null) { return "no"; } else { return multiple; } } /** * Sets the value of the multiple property. * * @param value * allowed object is * {@link String } * */ public void setMultiple(String value) { this.multiple = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the keydesc property. * * @return * possible object is * {@link Keydesc } * */ public Keydesc getKeydesc() { return keydesc; } /** * Sets the value of the keydesc property. * * @param value * allowed object is * {@link Keydesc } * */ public void setKeydesc(Keydesc value) { this.keydesc = value; } /** * Gets the value of the gisprompt property. * * @return * possible object is * {@link Gisprompt } * */ public Gisprompt getGisprompt() { return gisprompt; } /** * Sets the value of the gisprompt property. * * @param value * allowed object is * {@link Gisprompt } * */ public void setGisprompt(Gisprompt value) { this.gisprompt = value; } /** * Gets the value of the default property. * * @return * possible object is * {@link String } * */ public String getDefault() { return _default; } /** * Sets the value of the default property. * * @param value * allowed object is * {@link String } * */ public void setDefault(String value) { this._default = value; } /** * Gets the value of the values property. * * @return * possible object is * {@link Values } * */ public Values getValues() { return values; } /** * Sets the value of the values property. * * @param value * allowed object is * {@link Values } * */ public void setValues(Values value) { this.values = value; } /** * Gets the value of the guisection property. * * @return * possible object is * {@link String } * */ public String getGuisection() { return guisection; } /** * Sets the value of the guisection property. * * @param value * allowed object is * {@link String } * */ public void setGuisection(String value) { this.guisection = value; } }