| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- //
- // 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 ingredient 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/core.xsd line 48)
- * <p>
- * <pre>
- * <complexType name="ingredient">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * <attribute name="ingredientId" type="{http://www.w3.org/2001/XMLSchema}int" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- */
- public interface Ingredient {
- /**
- * Gets the value of the description property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getDescription();
- /**
- * Sets the value of the description property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setDescription(java.lang.String value);
- /**
- * Gets the value of the ingredientId property.
- *
- * @return
- * possible object is
- * {@link java.lang.Integer}
- */
- java.lang.Integer getIngredientId();
- /**
- * Sets the value of the ingredientId property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.Integer}
- */
- void setIngredientId(java.lang.Integer 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);
- }
|