| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // 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 recipe-step 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 144)
- * <p>
- * <pre>
- * <complexType name="recipe-step">
- * <simpleContent>
- * <extension base="<http://www.w3.org/2001/XMLSchema>string">
- * </extension>
- * </simpleContent>
- * </complexType>
- * </pre>
- *
- */
- public interface RecipeStep {
- /**
- * Gets the value of the value property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getValue();
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setValue(java.lang.String value);
- /**
- * Gets the value of the hjid property.
- *
- */
- java.lang.Long getHjid();
- /**
- * Sets the value of the hjid property.
- *
- */
- void setHjid(java.lang.Long value);
- }
|