393e780c7dc9f328a579c80cc0f9898edd594712.svn-base 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package com.sinosoft.nwyj.integration.cxf.dataService;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import javax.xml.bind.annotation.XmlAccessType;
  5. import javax.xml.bind.annotation.XmlAccessorType;
  6. import javax.xml.bind.annotation.XmlType;
  7. /**
  8. * <p>orders complex type的 Java 类
  9. *
  10. * <p>以下模式片段指定包含在此类中的预期内容。
  11. *
  12. * <pre>
  13. * &lt;complexType name="orders"&gt;
  14. * &lt;complexContent&gt;
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  16. * &lt;sequence&gt;
  17. * &lt;element name="item" type="{http://dc.soa.csg.cn}order" maxOccurs="unbounded" minOccurs="0"/&gt;
  18. * &lt;/sequence&gt;
  19. * &lt;/restriction&gt;
  20. * &lt;/complexContent&gt;
  21. * &lt;/complexType&gt;
  22. * </pre>
  23. *
  24. *
  25. */
  26. @XmlAccessorType(XmlAccessType.FIELD)
  27. @XmlType(name = "orders", propOrder = {
  28. "item"
  29. })
  30. public class Orders {
  31. protected List<Order> item;
  32. /**
  33. * Gets the value of the item property.
  34. *
  35. * <p>
  36. * This accessor method returns a reference to the live list,
  37. * not a snapshot. Therefore any modification you make to the
  38. * returned list will be present inside the JAXB object.
  39. * This is why there is not a <CODE>set</CODE> method for the item property.
  40. *
  41. * <p>
  42. * For example, to add a new item, do as follows:
  43. * <pre>
  44. * getItem().add(newItem);
  45. * </pre>
  46. *
  47. *
  48. * <p>
  49. * Objects of the following type(s) are allowed in the list
  50. * {@link Order }
  51. *
  52. *
  53. */
  54. public List<Order> getItem() {
  55. if (item == null) {
  56. item = new ArrayList<Order>();
  57. }
  58. return this.item;
  59. }
  60. public void setItem(List<Order> item) {
  61. this.item = item;
  62. }
  63. /**
  64. * @param list2
  65. */
  66. }