| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- //
- // 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 <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // 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.
- * <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 113)
- * <p>
- * <pre>
- * <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>
- * </pre>
- *
- */
- 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.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the User property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getUser().add(newItem);
- * </pre>
- *
- *
- * <p>
- * 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.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the Recipe property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getRecipe().add(newItem);
- * </pre>
- *
- *
- * <p>
- * 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.
- *
- * <p>
- * 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 <CODE>set</CODE> method for the Ingredient property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getIngredient().add(newItem);
- * </pre>
- *
- *
- * <p>
- * 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);
- }
|