UiIndex.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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-index 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 75)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="ui-index">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="index-section" maxOccurs="unbounded" minOccurs="0">
  18. * &lt;complexType>
  19. * &lt;complexContent>
  20. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  21. * &lt;attribute name="count" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
  22. * &lt;attribute name="index-key" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  23. * &lt;attribute name="selected" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
  24. * &lt;/restriction>
  25. * &lt;/complexContent>
  26. * &lt;/complexType>
  27. * &lt;/element>
  28. * &lt;/sequence>
  29. * &lt;/restriction>
  30. * &lt;/complexContent>
  31. * &lt;/complexType>
  32. * </pre>
  33. *
  34. */
  35. public interface UiIndex {
  36. /**
  37. * Gets the value of the IndexSection property.
  38. *
  39. * <p>
  40. * This accessor method returns a reference to the live list,
  41. * not a snapshot. Therefore any modification you make to the
  42. * returned list will be present inside the JAXB object.
  43. * This is why there is not a <CODE>set</CODE> method for the IndexSection property.
  44. *
  45. * <p>
  46. * For example, to add a new item, do as follows:
  47. * <pre>
  48. * getIndexSection().add(newItem);
  49. * </pre>
  50. *
  51. *
  52. * <p>
  53. * Objects of the following type(s) are allowed in the list
  54. * {@link magoffin.matt.ieat.domain.UiIndex.IndexSectionType}
  55. *
  56. */
  57. java.util.List getIndexSection();
  58. /**
  59. * Java content class for anonymous complex type.
  60. * <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 78)
  61. * <p>
  62. * <pre>
  63. * &lt;complexType>
  64. * &lt;complexContent>
  65. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  66. * &lt;attribute name="count" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
  67. * &lt;attribute name="index-key" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  68. * &lt;attribute name="selected" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
  69. * &lt;/restriction>
  70. * &lt;/complexContent>
  71. * &lt;/complexType>
  72. * </pre>
  73. *
  74. */
  75. public interface IndexSectionType {
  76. /**
  77. * Gets the value of the indexKey property.
  78. *
  79. * @return
  80. * possible object is
  81. * {@link java.lang.String}
  82. */
  83. java.lang.String getIndexKey();
  84. /**
  85. * Sets the value of the indexKey property.
  86. *
  87. * @param value
  88. * allowed object is
  89. * {@link java.lang.String}
  90. */
  91. void setIndexKey(java.lang.String value);
  92. /**
  93. * Gets the value of the count property.
  94. *
  95. * @return
  96. * possible object is
  97. * {@link java.lang.Integer}
  98. */
  99. java.lang.Integer getCount();
  100. /**
  101. * Sets the value of the count property.
  102. *
  103. * @param value
  104. * allowed object is
  105. * {@link java.lang.Integer}
  106. */
  107. void setCount(java.lang.Integer value);
  108. /**
  109. * Gets the value of the selected property.
  110. *
  111. */
  112. boolean isSelected();
  113. /**
  114. * Sets the value of the selected property.
  115. *
  116. */
  117. void setSelected(boolean value);
  118. }
  119. }