MealRecipe.java 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 meal-recipe 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 65)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="meal-recipe">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="recipe" type="{http://msqr.us/xsd/ieat}recipe"/>
  18. * &lt;element name="course" type="{http://msqr.us/xsd/ieat}course"/>
  19. * &lt;/sequence>
  20. * &lt;attribute name="quantity" type="{http://www.w3.org/2001/XMLSchema}double" default="1.0" />
  21. * &lt;/restriction>
  22. * &lt;/complexContent>
  23. * &lt;/complexType>
  24. * </pre>
  25. *
  26. */
  27. public interface MealRecipe {
  28. /**
  29. * Gets the value of the recipe property.
  30. *
  31. * @return
  32. * possible object is
  33. * {@link magoffin.matt.ieat.domain.Recipe}
  34. */
  35. magoffin.matt.ieat.domain.Recipe getRecipe();
  36. /**
  37. * Sets the value of the recipe property.
  38. *
  39. * @param value
  40. * allowed object is
  41. * {@link magoffin.matt.ieat.domain.Recipe}
  42. */
  43. void setRecipe(magoffin.matt.ieat.domain.Recipe value);
  44. /**
  45. * Gets the value of the quantity property.
  46. *
  47. */
  48. double getQuantity();
  49. /**
  50. * Sets the value of the quantity property.
  51. *
  52. */
  53. void setQuantity(double value);
  54. /**
  55. * Gets the value of the course property.
  56. *
  57. * @return
  58. * possible object is
  59. * {@link magoffin.matt.ieat.domain.Course}
  60. */
  61. magoffin.matt.ieat.domain.Course getCourse();
  62. /**
  63. * Sets the value of the course property.
  64. *
  65. * @param value
  66. * allowed object is
  67. * {@link magoffin.matt.ieat.domain.Course}
  68. */
  69. void setCourse(magoffin.matt.ieat.domain.Course value);
  70. /**
  71. * Gets the value of the hjid property.
  72. *
  73. */
  74. java.lang.Long getHjid();
  75. /**
  76. * Sets the value of the hjid property.
  77. *
  78. */
  79. void setHjid(java.lang.Long value);
  80. }