| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- //
- // 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-edit 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 58)
- * <p>
- * <pre>
- * <complexType name="ui-edit">
- * <complexContent>
- * <extension base="{http://msqr.us/xsd/ieat}ui-base">
- * <sequence>
- * <element name="ingredient" type="{http://msqr.us/xsd/ieat}ingredient" minOccurs="0"/>
- * <element name="recipe" type="{http://msqr.us/xsd/ieat}recipe" minOccurs="0"/>
- * <element name="user" type="{http://msqr.us/xsd/ieat}user" minOccurs="0"/>
- * <element name="meal" type="{http://msqr.us/xsd/ieat}meal" minOccurs="0"/>
- * <element name="meal-recipe" type="{http://msqr.us/xsd/ieat}meal-recipe" minOccurs="0"/>
- * <element name="search-results" type="{http://msqr.us/xsd/ieat}ui-search-results" minOccurs="0"/>
- * </sequence>
- * <attribute name="ignoreWarnings" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
- * <attribute name="refresh" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
- * </extension>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- */
- public interface UiEdit
- extends magoffin.matt.ieat.domain.UiBase
- {
- /**
- * Gets the value of the refresh property.
- *
- */
- boolean isRefresh();
- /**
- * Sets the value of the refresh property.
- *
- */
- void setRefresh(boolean value);
- /**
- * Gets the value of the user property.
- *
- * @return
- * possible object is
- * {@link magoffin.matt.ieat.domain.User}
- */
- magoffin.matt.ieat.domain.User getUser();
- /**
- * Sets the value of the user property.
- *
- * @param value
- * allowed object is
- * {@link magoffin.matt.ieat.domain.User}
- */
- void setUser(magoffin.matt.ieat.domain.User value);
- /**
- * Gets the value of the mealRecipe property.
- *
- * @return
- * possible object is
- * {@link magoffin.matt.ieat.domain.MealRecipe}
- */
- magoffin.matt.ieat.domain.MealRecipe getMealRecipe();
- /**
- * Sets the value of the mealRecipe property.
- *
- * @param value
- * allowed object is
- * {@link magoffin.matt.ieat.domain.MealRecipe}
- */
- void setMealRecipe(magoffin.matt.ieat.domain.MealRecipe value);
- /**
- * Gets the value of the ingredient property.
- *
- * @return
- * possible object is
- * {@link magoffin.matt.ieat.domain.Ingredient}
- */
- magoffin.matt.ieat.domain.Ingredient getIngredient();
- /**
- * Sets the value of the ingredient property.
- *
- * @param value
- * allowed object is
- * {@link magoffin.matt.ieat.domain.Ingredient}
- */
- void setIngredient(magoffin.matt.ieat.domain.Ingredient value);
- /**
- * Gets the value of the recipe property.
- *
- * @return
- * possible object is
- * {@link magoffin.matt.ieat.domain.Recipe}
- */
- magoffin.matt.ieat.domain.Recipe getRecipe();
- /**
- * Sets the value of the recipe property.
- *
- * @param value
- * allowed object is
- * {@link magoffin.matt.ieat.domain.Recipe}
- */
- void setRecipe(magoffin.matt.ieat.domain.Recipe value);
- /**
- * Gets the value of the meal property.
- *
- * @return
- * possible object is
- * {@link magoffin.matt.ieat.domain.Meal}
- */
- magoffin.matt.ieat.domain.Meal getMeal();
- /**
- * Sets the value of the meal property.
- *
- * @param value
- * allowed object is
- * {@link magoffin.matt.ieat.domain.Meal}
- */
- void setMeal(magoffin.matt.ieat.domain.Meal value);
- /**
- * Gets the value of the ignoreWarnings property.
- *
- */
- boolean isIgnoreWarnings();
- /**
- * Sets the value of the ignoreWarnings property.
- *
- */
- void setIgnoreWarnings(boolean value);
- /**
- * Gets the value of the searchResults property.
- *
- * @return
- * possible object is
- * {@link magoffin.matt.ieat.domain.UiSearchResults}
- */
- magoffin.matt.ieat.domain.UiSearchResults getSearchResults();
- /**
- * Sets the value of the searchResults property.
- *
- * @param value
- * allowed object is
- * {@link magoffin.matt.ieat.domain.UiSearchResults}
- */
- void setSearchResults(magoffin.matt.ieat.domain.UiSearchResults value);
- }
|