// // 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 recipe-ingredient 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 123) *

*

 * <complexType name="recipe-ingredient">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="unit" type="{http://msqr.us/xsd/ieat}unit" minOccurs="0"/>
 *         <element name="ingredient" type="{http://msqr.us/xsd/ieat}ingredient" minOccurs="0"/>
 *         <element name="recipe" type="{http://msqr.us/xsd/ieat}recipe" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="optional" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="qualifier" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="quantity" type="{http://www.w3.org/2001/XMLSchema}double" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* */ public interface RecipeIngredient { /** * Gets the value of the optional property. * */ boolean isOptional(); /** * Sets the value of the optional property. * */ void setOptional(boolean 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 quantity property. * */ double getQuantity(); /** * Sets the value of the quantity property. * */ void setQuantity(double value); /** * Gets the value of the qualifier property. * * @return * possible object is * {@link java.lang.String} */ java.lang.String getQualifier(); /** * Sets the value of the qualifier property. * * @param value * allowed object is * {@link java.lang.String} */ void setQualifier(java.lang.String value); /** * Gets the value of the unit property. * * @return * possible object is * {@link magoffin.matt.ieat.domain.Unit} */ magoffin.matt.ieat.domain.Unit getUnit(); /** * Sets the value of the unit property. * * @param value * allowed object is * {@link magoffin.matt.ieat.domain.Unit} */ void setUnit(magoffin.matt.ieat.domain.Unit value); /** * Gets the value of the hjid property. * */ java.lang.Long getHjid(); /** * Sets the value of the hjid property. * */ void setHjid(java.lang.Long value); }