PageRenderTime 57ms CodeModel.GetById 31ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/apps/rifle-validator/src/main/java/org/fundacionctic/rifle/xmlbind/List.java

https://bitbucket.org/fundacionctic/rifle
Java | 85 lines | 27 code | 9 blank | 49 comment | 2 complexity | 9f5a2aa52c77e3a7f2b8c823f3ec7381 MD5 | raw file
Possible License(s): EPL-1.0, MIT, Apache-2.0
  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2009.10.02 at 10:04:13 AM CEST
  6. //
  7. package org.fundacionctic.rifle.xmlbind;
  8. import java.util.ArrayList;
  9. import javax.xml.bind.annotation.XmlAccessType;
  10. import javax.xml.bind.annotation.XmlAccessorType;
  11. import javax.xml.bind.annotation.XmlElement;
  12. import javax.xml.bind.annotation.XmlElements;
  13. import javax.xml.bind.annotation.XmlRootElement;
  14. import javax.xml.bind.annotation.XmlType;
  15. /**
  16. * <p>Java class for anonymous complex type.
  17. *
  18. * <p>The following schema fragment specifies the expected content contained within this class.
  19. *
  20. * <pre>
  21. * &lt;complexType>
  22. * &lt;complexContent>
  23. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  24. * &lt;sequence>
  25. * &lt;group ref="{http://www.w3.org/2007/rif#}GROUNDTERM" maxOccurs="unbounded" minOccurs="0"/>
  26. * &lt;/sequence>
  27. * &lt;/restriction>
  28. * &lt;/complexContent>
  29. * &lt;/complexType>
  30. * </pre>
  31. *
  32. *
  33. */
  34. @XmlAccessorType(XmlAccessType.FIELD)
  35. @XmlType(name = "", propOrder = {
  36. "groundterm"
  37. })
  38. @XmlRootElement(name = "List")
  39. public class List {
  40. @XmlElements({
  41. @XmlElement(name = "List", type = List.class),
  42. @XmlElement(name = "External", type = ExternalGROUNDUNITERMType.class),
  43. @XmlElement(name = "Const", type = Const.class)
  44. })
  45. protected java.util.List<java.lang.Object> groundterm;
  46. /**
  47. * Gets the value of the groundterm property.
  48. *
  49. * <p>
  50. * This accessor method returns a reference to the live list,
  51. * not a snapshot. Therefore any modification you make to the
  52. * returned list will be present inside the JAXB object.
  53. * This is why there is not a <CODE>set</CODE> method for the groundterm property.
  54. *
  55. * <p>
  56. * For example, to add a new item, do as follows:
  57. * <pre>
  58. * getGROUNDTERM().add(newItem);
  59. * </pre>
  60. *
  61. *
  62. * <p>
  63. * Objects of the following type(s) are allowed in the list
  64. * {@link List }
  65. * {@link ExternalGROUNDUNITERMType }
  66. * {@link Const }
  67. *
  68. *
  69. */
  70. public java.util.List<java.lang.Object> getGROUNDTERM() {
  71. if (groundterm == null) {
  72. groundterm = new ArrayList<java.lang.Object>();
  73. }
  74. return this.groundterm;
  75. }
  76. }