| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- //
- // 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 recipe-search-criteria 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 87)
- * <p>
- * <pre>
- * <complexType name="recipe-search-criteria">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="simpleQuery" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="ingredient" type="{http://msqr.us/xsd/ieat}recipe-ingredient" maxOccurs="unbounded" minOccurs="0"/>
- * <element name="advanced" type="{http://msqr.us/xsd/ieat}advanced-search-criteria" maxOccurs="unbounded" minOccurs="0"/>
- * </sequence>
- * <attribute name="mode" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- */
- public interface RecipeSearchCriteria {
- /**
- * Gets the value of the Advanced 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 Advanced property.
- *
- * <p>
- * For example, to add a new item, do as follows:
- * <pre>
- * getAdvanced().add(newItem);
- * </pre>
- *
- *
- * <p>
- * Objects of the following type(s) are allowed in the list
- * {@link magoffin.matt.ieat.domain.AdvancedSearchCriteria}
- *
- */
- java.util.List getAdvanced();
- /**
- * Gets the value of the simpleQuery property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getSimpleQuery();
- /**
- * Sets the value of the simpleQuery property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setSimpleQuery(java.lang.String value);
- /**
- * To search for recipes containing sets of ingredients.
- * 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.RecipeIngredient}
- *
- */
- java.util.List getIngredient();
- /**
- * Gets the value of the mode property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getMode();
- /**
- * Sets the value of the mode property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setMode(java.lang.String value);
- /**
- * Gets the value of the name property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getName();
- /**
- * Sets the value of the name property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setName(java.lang.String value);
- }
|