// // 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 meal 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/core.xsd line 56) *

*

 * <complexType name="meal">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="recipe" type="{http://msqr.us/xsd/ieat}meal-recipe" maxOccurs="unbounded"/>
 *         <element name="owner" type="{http://msqr.us/xsd/ieat}user" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="mealId" type="{http://www.w3.org/2001/XMLSchema}long" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface Meal { /** * Gets the value of the owner property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.User} */ magoffin.matt.ieat.domain.User getOwner(); /** * Sets the value of the owner property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.User} */ void setOwner(magoffin.matt.ieat.domain.User 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.MealRecipe} * */ java.util.List getRecipe(); /** * Gets the value of the mealId property. * * @return * possible object is * {@link java.lang.Long} */ java.lang.Long getMealId(); /** * Sets the value of the mealId property. * * @param value * allowed object is * {@link java.lang.Long} */ void setMealId(java.lang.Long 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); }