Course.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 course 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 24)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="course">
  14. * &lt;simpleContent>
  15. * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
  16. * &lt;attribute name="courseId" type="{http://www.w3.org/2001/XMLSchema}int" />
  17. * &lt;/extension>
  18. * &lt;/simpleContent>
  19. * &lt;/complexType>
  20. * </pre>
  21. *
  22. */
  23. public interface Course {
  24. /**
  25. * Gets the value of the courseId property.
  26. *
  27. * @return
  28. * possible object is
  29. * {@link java.lang.Integer}
  30. */
  31. java.lang.Integer getCourseId();
  32. /**
  33. * Sets the value of the courseId property.
  34. *
  35. * @param value
  36. * allowed object is
  37. * {@link java.lang.Integer}
  38. */
  39. void setCourseId(java.lang.Integer value);
  40. /**
  41. * Gets the value of the value property.
  42. *
  43. * @return
  44. * possible object is
  45. * {@link java.lang.String}
  46. */
  47. java.lang.String getValue();
  48. /**
  49. * Sets the value of the value property.
  50. *
  51. * @param value
  52. * allowed object is
  53. * {@link java.lang.String}
  54. */
  55. void setValue(java.lang.String value);
  56. }