Ingredient.java 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. //
  2. // 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
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2018.09.10 at 08:01:16 AM PDT
  6. //
  7. package magoffin.matt.ieat.domain;
  8. /**
  9. * Java content class for ingredient complex type.
  10. * <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)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="ingredient">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
  18. * &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  19. * &lt;/sequence>
  20. * &lt;attribute name="ingredientId" type="{http://www.w3.org/2001/XMLSchema}int" />
  21. * &lt;/restriction>
  22. * &lt;/complexContent>
  23. * &lt;/complexType>
  24. * </pre>
  25. *
  26. */
  27. public interface Ingredient {
  28. /**
  29. * Gets the value of the description property.
  30. *
  31. * @return
  32. * possible object is
  33. * {@link java.lang.String}
  34. */
  35. java.lang.String getDescription();
  36. /**
  37. * Sets the value of the description property.
  38. *
  39. * @param value
  40. * allowed object is
  41. * {@link java.lang.String}
  42. */
  43. void setDescription(java.lang.String value);
  44. /**
  45. * Gets the value of the ingredientId property.
  46. *
  47. * @return
  48. * possible object is
  49. * {@link java.lang.Integer}
  50. */
  51. java.lang.Integer getIngredientId();
  52. /**
  53. * Sets the value of the ingredientId property.
  54. *
  55. * @param value
  56. * allowed object is
  57. * {@link java.lang.Integer}
  58. */
  59. void setIngredientId(java.lang.Integer value);
  60. /**
  61. * Gets the value of the name property.
  62. *
  63. * @return
  64. * possible object is
  65. * {@link java.lang.String}
  66. */
  67. java.lang.String getName();
  68. /**
  69. * Sets the value of the name property.
  70. *
  71. * @param value
  72. * allowed object is
  73. * {@link java.lang.String}
  74. */
  75. void setName(java.lang.String value);
  76. }