Created
July 10, 2012 11:58
-
-
Save liweinan/3082896 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // 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: 2012.07.10 at 07:53:25 PM CST | |
| // | |
| package generated; | |
| import javax.xml.bind.annotation.XmlAccessType; | |
| import javax.xml.bind.annotation.XmlAccessorType; | |
| import javax.xml.bind.annotation.XmlAttribute; | |
| import javax.xml.bind.annotation.XmlType; | |
| /** | |
| * <p>Java class for query-paramType complex type. | |
| * | |
| * <p>The following schema fragment specifies the expected content contained within this class. | |
| * | |
| * <pre> | |
| * <complexType name="query-paramType"> | |
| * <complexContent> | |
| * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
| * <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
| * </restriction> | |
| * </complexContent> | |
| * </complexType> | |
| * </pre> | |
| * | |
| * | |
| */ | |
| @XmlAccessorType(XmlAccessType.FIELD) | |
| @XmlType(name = "query-paramType") | |
| public class QueryParamType { | |
| @XmlAttribute | |
| protected String name; | |
| @XmlAttribute | |
| protected String type; | |
| /** | |
| * 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() { | |
| return type; | |
| } | |
| /** | |
| * Sets the value of the type property. | |
| * | |
| * @param value | |
| * allowed object is | |
| * {@link String } | |
| * | |
| */ | |
| public void setType(String value) { | |
| this.type = value; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment