UiMetaSupport.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.6-01/24/2006 06:08 PM(kohsuke)-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: 2018.09.10 at 08:01:16 AM PDT
  6. //
  7. package magoffin.matt.ieat.domain;
  8. /**
  9. * Java content class for ui-meta-support complex type.
  10. * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/home/tom/workspace/iEat/hyperjaxb2-build/src/main/resources/ui.xsd line 172)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="ui-meta-support">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="meta" type="{http://msqr.us/xsd/ieat}ui-parameter" maxOccurs="unbounded" minOccurs="0"/>
  18. * &lt;/sequence>
  19. * &lt;/restriction>
  20. * &lt;/complexContent>
  21. * &lt;/complexType>
  22. * </pre>
  23. *
  24. */
  25. public interface UiMetaSupport {
  26. /**
  27. * Gets the value of the Meta property.
  28. *
  29. * <p>
  30. * This accessor method returns a reference to the live list,
  31. * not a snapshot. Therefore any modification you make to the
  32. * returned list will be present inside the JAXB object.
  33. * This is why there is not a <CODE>set</CODE> method for the Meta property.
  34. *
  35. * <p>
  36. * For example, to add a new item, do as follows:
  37. * <pre>
  38. * getMeta().add(newItem);
  39. * </pre>
  40. *
  41. *
  42. * <p>
  43. * Objects of the following type(s) are allowed in the list
  44. * {@link magoffin.matt.ieat.domain.UiParameter}
  45. *
  46. */
  47. java.util.List getMeta();
  48. }