| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- //
- // 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 related-recipe 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 150)
- * <p>
- * <pre>
- * <complexType name="related-recipe">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="kind" type="{http://msqr.us/xsd/ieat}relation-kind"/>
- * <element name="recipe" type="{http://msqr.us/xsd/ieat}recipe"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- */
- public interface RelatedRecipe {
- /**
- * Gets the value of the recipe property.
- *
- * @return
- * possible object is
- * {@link magoffin.matt.ieat.domain.Recipe}
- */
- magoffin.matt.ieat.domain.Recipe getRecipe();
- /**
- * Sets the value of the recipe property.
- *
- * @param value
- * allowed object is
- * {@link magoffin.matt.ieat.domain.Recipe}
- */
- void setRecipe(magoffin.matt.ieat.domain.Recipe value);
- /**
- * Gets the value of the kind property.
- *
- * @return
- * possible object is
- * {@link magoffin.matt.ieat.domain.RelationKind}
- */
- magoffin.matt.ieat.domain.RelationKind getKind();
- /**
- * Sets the value of the kind property.
- *
- * @param value
- * allowed object is
- * {@link magoffin.matt.ieat.domain.RelationKind}
- */
- void setKind(magoffin.matt.ieat.domain.RelationKind 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);
- }
|