AdvancedSearchCriteria.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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 advanced-search-criteria 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 103)
  11. * <p>
  12. * <pre>
  13. * &lt;complexType name="advanced-search-criteria">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="query" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  18. * &lt;/sequence>
  19. * &lt;attribute name="choice" type="{http://www.w3.org/2001/XMLSchema}string" />
  20. * &lt;attribute name="op" use="required" type="{http://www.w3.org/2001/XMLSchema}short" />
  21. * &lt;attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
  22. * &lt;attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
  23. * &lt;/restriction>
  24. * &lt;/complexContent>
  25. * &lt;/complexType>
  26. * </pre>
  27. *
  28. */
  29. public interface AdvancedSearchCriteria {
  30. /**
  31. * Gets the value of the op property.
  32. *
  33. */
  34. short getOp();
  35. /**
  36. * Sets the value of the op property.
  37. *
  38. */
  39. void setOp(short value);
  40. /**
  41. * Gets the value of the type property.
  42. *
  43. * @return
  44. * possible object is
  45. * {@link java.lang.String}
  46. */
  47. java.lang.String getType();
  48. /**
  49. * Sets the value of the type property.
  50. *
  51. * @param value
  52. * allowed object is
  53. * {@link java.lang.String}
  54. */
  55. void setType(java.lang.String value);
  56. /**
  57. * Gets the value of the choice property.
  58. *
  59. * @return
  60. * possible object is
  61. * {@link java.lang.String}
  62. */
  63. java.lang.String getChoice();
  64. /**
  65. * Sets the value of the choice property.
  66. *
  67. * @param value
  68. * allowed object is
  69. * {@link java.lang.String}
  70. */
  71. void setChoice(java.lang.String value);
  72. /**
  73. * Gets the value of the required property.
  74. *
  75. */
  76. boolean isRequired();
  77. /**
  78. * Sets the value of the required property.
  79. *
  80. */
  81. void setRequired(boolean value);
  82. /**
  83. * Gets the value of the query property.
  84. *
  85. * @return
  86. * possible object is
  87. * {@link java.lang.String}
  88. */
  89. java.lang.String getQuery();
  90. /**
  91. * Sets the value of the query property.
  92. *
  93. * @param value
  94. * allowed object is
  95. * {@link java.lang.String}
  96. */
  97. void setQuery(java.lang.String value);
  98. }