885a29d872543b1c49b920b3c37a1fab83991b8e.svn-base 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package cn.com.goldenwater.webService.onemap;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlType;
  5. /**
  6. * <p>
  7. * Java class for execute complex type.
  8. *
  9. * <p>
  10. * The following schema fragment specifies the expected content contained within
  11. * this class.
  12. *
  13. * <pre>
  14. * &lt;complexType name="execute">
  15. * &lt;complexContent>
  16. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  17. * &lt;sequence>
  18. * &lt;element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  19. * &lt;/sequence>
  20. * &lt;/restriction>
  21. * &lt;/complexContent>
  22. * &lt;/complexType>
  23. * </pre>
  24. */
  25. @XmlAccessorType(XmlAccessType.FIELD)
  26. @XmlType(name = "execute", propOrder = {"arg0"})
  27. public class Execute {
  28. protected String arg0;
  29. /**
  30. * Gets the value of the arg0 property.
  31. *
  32. * @return possible object is {@link String }
  33. */
  34. public String getArg0() {
  35. return arg0;
  36. }
  37. /**
  38. * Sets the value of the arg0 property.
  39. *
  40. * @param value allowed object is {@link String }
  41. */
  42. public void setArg0(String value) {
  43. this.arg0 = value;
  44. }
  45. }