// // 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 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2018.09.10 at 08:01:16 AM PDT // package magoffin.matt.ieat.domain; /** * Java content class for ui-index complex type. *

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) *

*

 * <complexType name="ui-index">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="index-section" maxOccurs="unbounded" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <attribute name="count" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
 *                 <attribute name="index-key" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                 <attribute name="selected" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface UiIndex { /** * Gets the value of the IndexSection property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the IndexSection property. * *

* For example, to add a new item, do as follows: *

     *    getIndexSection().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.UiIndex.IndexSectionType} * */ java.util.List getIndexSection(); /** * Java content class for anonymous complex type. *

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) *

*

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <attribute name="count" type="{http://www.w3.org/2001/XMLSchema}int" default="0" />
     *       <attribute name="index-key" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     *       <attribute name="selected" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* */ public interface IndexSectionType { /** * Gets the value of the indexKey property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getIndexKey(); /** * Sets the value of the indexKey property. * * @param value * allowed object is * {@link java.lang.String} */ void setIndexKey(java.lang.String value); /** * Gets the value of the count property. * * @return * possible object is * {@link java.lang.Integer} */ java.lang.Integer getCount(); /** * Sets the value of the count property. * * @param value * allowed object is * {@link java.lang.Integer} */ void setCount(java.lang.Integer value); /** * Gets the value of the selected property. * */ boolean isSelected(); /** * Sets the value of the selected property. * */ void setSelected(boolean value); } }