UiPaginationSupport.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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-pagination-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 160)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="ui-pagination-support">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="allowablePageSize" type="{http://www.w3.org/2001/XMLSchema}int" maxOccurs="unbounded" minOccurs="0"/>
  18. * &lt;/sequence>
  19. * &lt;attribute name="allowUnlimited" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
  20. * &lt;attribute name="defaultPageSize" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
  21. * &lt;/restriction>
  22. * &lt;/complexContent>
  23. * &lt;/complexType>
  24. * </pre>
  25. *
  26. */
  27. public interface UiPaginationSupport {
  28. /**
  29. * Gets the value of the defaultPageSize property.
  30. *
  31. * @return
  32. * possible object is
  33. * {@link java.lang.Integer}
  34. */
  35. java.lang.Integer getDefaultPageSize();
  36. /**
  37. * Sets the value of the defaultPageSize property.
  38. *
  39. * @param value
  40. * allowed object is
  41. * {@link java.lang.Integer}
  42. */
  43. void setDefaultPageSize(java.lang.Integer value);
  44. /**
  45. * Gets the value of the allowUnlimited property.
  46. *
  47. */
  48. boolean isAllowUnlimited();
  49. /**
  50. * Sets the value of the allowUnlimited property.
  51. *
  52. */
  53. void setAllowUnlimited(boolean value);
  54. /**
  55. * Gets the value of the AllowablePageSize property.
  56. *
  57. * <p>
  58. * This accessor method returns a reference to the live list,
  59. * not a snapshot. Therefore any modification you make to the
  60. * returned list will be present inside the JAXB object.
  61. * This is why there is not a <CODE>set</CODE> method for the AllowablePageSize property.
  62. *
  63. * <p>
  64. * For example, to add a new item, do as follows:
  65. * <pre>
  66. * getAllowablePageSize().add(newItem);
  67. * </pre>
  68. *
  69. *
  70. * <p>
  71. * Objects of the following type(s) are allowed in the list
  72. * {@link java.lang.Integer}
  73. *
  74. */
  75. java.util.List getAllowablePageSize();
  76. }