RecipeStep.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-step 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 144)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="recipe-step">
  14. * &lt;simpleContent>
  15. * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
  16. * &lt;/extension>
  17. * &lt;/simpleContent>
  18. * &lt;/complexType>
  19. * </pre>
  20. *
  21. */
  22. public interface RecipeStep {
  23. /**
  24. * Gets the value of the value property.
  25. *
  26. * @return
  27. * possible object is
  28. * {@link java.lang.String}
  29. */
  30. java.lang.String getValue();
  31. /**
  32. * Sets the value of the value property.
  33. *
  34. * @param value
  35. * allowed object is
  36. * {@link java.lang.String}
  37. */
  38. void setValue(java.lang.String value);
  39. /**
  40. * Gets the value of the hjid property.
  41. *
  42. */
  43. java.lang.Long getHjid();
  44. /**
  45. * Sets the value of the hjid property.
  46. *
  47. */
  48. void setHjid(java.lang.Long value);
  49. }