RecipeIngredient.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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 recipe-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 123)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="recipe-ingredient">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="unit" type="{http://msqr.us/xsd/ieat}unit" minOccurs="0"/>
  18. * &lt;element name="ingredient" type="{http://msqr.us/xsd/ieat}ingredient" minOccurs="0"/>
  19. * &lt;element name="recipe" type="{http://msqr.us/xsd/ieat}recipe" minOccurs="0"/>
  20. * &lt;/sequence>
  21. * &lt;attribute name="optional" type="{http://www.w3.org/2001/XMLSchema}boolean" />
  22. * &lt;attribute name="qualifier" type="{http://www.w3.org/2001/XMLSchema}string" />
  23. * &lt;attribute name="quantity" type="{http://www.w3.org/2001/XMLSchema}double" />
  24. * &lt;/restriction>
  25. * &lt;/complexContent>
  26. * &lt;/complexType>
  27. * </pre>
  28. *
  29. */
  30. public interface RecipeIngredient {
  31. /**
  32. * Gets the value of the optional property.
  33. *
  34. */
  35. boolean isOptional();
  36. /**
  37. * Sets the value of the optional property.
  38. *
  39. */
  40. void setOptional(boolean value);
  41. /**
  42. * Gets the value of the ingredient property.
  43. *
  44. * @return
  45. * possible object is
  46. * {@link magoffin.matt.ieat.domain.Ingredient}
  47. */
  48. magoffin.matt.ieat.domain.Ingredient getIngredient();
  49. /**
  50. * Sets the value of the ingredient property.
  51. *
  52. * @param value
  53. * allowed object is
  54. * {@link magoffin.matt.ieat.domain.Ingredient}
  55. */
  56. void setIngredient(magoffin.matt.ieat.domain.Ingredient value);
  57. /**
  58. * Gets the value of the recipe property.
  59. *
  60. * @return
  61. * possible object is
  62. * {@link magoffin.matt.ieat.domain.Recipe}
  63. */
  64. magoffin.matt.ieat.domain.Recipe getRecipe();
  65. /**
  66. * Sets the value of the recipe property.
  67. *
  68. * @param value
  69. * allowed object is
  70. * {@link magoffin.matt.ieat.domain.Recipe}
  71. */
  72. void setRecipe(magoffin.matt.ieat.domain.Recipe value);
  73. /**
  74. * Gets the value of the quantity property.
  75. *
  76. */
  77. double getQuantity();
  78. /**
  79. * Sets the value of the quantity property.
  80. *
  81. */
  82. void setQuantity(double value);
  83. /**
  84. * Gets the value of the qualifier property.
  85. *
  86. * @return
  87. * possible object is
  88. * {@link java.lang.String}
  89. */
  90. java.lang.String getQualifier();
  91. /**
  92. * Sets the value of the qualifier property.
  93. *
  94. * @param value
  95. * allowed object is
  96. * {@link java.lang.String}
  97. */
  98. void setQualifier(java.lang.String value);
  99. /**
  100. * Gets the value of the unit property.
  101. *
  102. * @return
  103. * possible object is
  104. * {@link magoffin.matt.ieat.domain.Unit}
  105. */
  106. magoffin.matt.ieat.domain.Unit getUnit();
  107. /**
  108. * Sets the value of the unit property.
  109. *
  110. * @param value
  111. * allowed object is
  112. * {@link magoffin.matt.ieat.domain.Unit}
  113. */
  114. void setUnit(magoffin.matt.ieat.domain.Unit value);
  115. /**
  116. * Gets the value of the hjid property.
  117. *
  118. */
  119. java.lang.Long getHjid();
  120. /**
  121. * Sets the value of the hjid property.
  122. *
  123. */
  124. void setHjid(java.lang.Long value);
  125. }