UiBase.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 ui-base 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/ui.xsd line 23)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="ui-base">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;attribute name="mode" type="{http://www.w3.org/2001/XMLSchema}string" />
  17. * &lt;/restriction>
  18. * &lt;/complexContent>
  19. * &lt;/complexType>
  20. * </pre>
  21. *
  22. */
  23. public interface UiBase {
  24. /**
  25. * Gets the value of the mode property.
  26. *
  27. * @return
  28. * possible object is
  29. * {@link java.lang.String}
  30. */
  31. java.lang.String getMode();
  32. /**
  33. * Sets the value of the mode property.
  34. *
  35. * @param value
  36. * allowed object is
  37. * {@link java.lang.String}
  38. */
  39. void setMode(java.lang.String value);
  40. }