// // 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-search-results 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 113) *

*

 * <complexType name="ui-search-results">
 *   <complexContent>
 *     <extension base="{http://msqr.us/xsd/ieat}ui-base">
 *       <sequence>
 *         <element name="ui-index" type="{http://msqr.us/xsd/ieat}ui-index" minOccurs="0"/>
 *         <element name="pagination" type="{http://msqr.us/xsd/ieat}ui-pagination-support" minOccurs="0"/>
 *         <element name="recipe-criteria" type="{http://msqr.us/xsd/ieat}recipe-search-criteria" minOccurs="0"/>
 *         <element name="recipe" type="{http://msqr.us/xsd/ieat}ui-recipe-match" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ingredient" type="{http://msqr.us/xsd/ieat}ui-ingredient-match" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="user" type="{http://msqr.us/xsd/ieat}ui-user-match" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="pageStart" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="totalResults" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface UiSearchResults extends magoffin.matt.ieat.domain.UiBase { /** * Gets the value of the pagination property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.UiPaginationSupport} */ magoffin.matt.ieat.domain.UiPaginationSupport getPagination(); /** * Sets the value of the pagination property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.UiPaginationSupport} */ void setPagination(magoffin.matt.ieat.domain.UiPaginationSupport value); /** * Gets the value of the User 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 User property. * *

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

     *    getUser().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.UiUserMatch} * */ java.util.List getUser(); /** * Gets the value of the pageSize property. * * @return * possible object is * {@link java.lang.Integer} */ java.lang.Integer getPageSize(); /** * Sets the value of the pageSize property. * * @param value * allowed object is * {@link java.lang.Integer} */ void setPageSize(java.lang.Integer value); /** * Gets the value of the pageStart property. * * @return * possible object is * {@link java.lang.Integer} */ java.lang.Integer getPageStart(); /** * Sets the value of the pageStart property. * * @param value * allowed object is * {@link java.lang.Integer} */ void setPageStart(java.lang.Integer value); /** * Gets the value of the Recipe 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 Recipe property. * *

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

     *    getRecipe().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.UiRecipeMatch} * */ java.util.List getRecipe(); /** * Gets the value of the Ingredient 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 Ingredient property. * *

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

     *    getIngredient().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link magoffin.matt.ieat.domain.UiIngredientMatch} * */ java.util.List getIngredient(); /** * Gets the value of the uiIndex property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.UiIndex} */ magoffin.matt.ieat.domain.UiIndex getUiIndex(); /** * Sets the value of the uiIndex property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.UiIndex} */ void setUiIndex(magoffin.matt.ieat.domain.UiIndex value); /** * Gets the value of the totalResults property. * * @return * possible object is * {@link java.lang.Integer} */ java.lang.Integer getTotalResults(); /** * Sets the value of the totalResults property. * * @param value * allowed object is * {@link java.lang.Integer} */ void setTotalResults(java.lang.Integer value); /** * Gets the value of the recipeCriteria property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.RecipeSearchCriteria} */ magoffin.matt.ieat.domain.RecipeSearchCriteria getRecipeCriteria(); /** * Sets the value of the recipeCriteria property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.RecipeSearchCriteria} */ void setRecipeCriteria(magoffin.matt.ieat.domain.RecipeSearchCriteria value); }