| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- //
- // 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 advanced-search-criteria 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/ui.xsd line 103)
- * <p>
- * <pre>
- * <complexType name="advanced-search-criteria">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="query" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * </sequence>
- * <attribute name="choice" type="{http://www.w3.org/2001/XMLSchema}string" />
- * <attribute name="op" use="required" type="{http://www.w3.org/2001/XMLSchema}short" />
- * <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
- * <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- */
- public interface AdvancedSearchCriteria {
- /**
- * Gets the value of the op property.
- *
- */
- short getOp();
- /**
- * Sets the value of the op property.
- *
- */
- void setOp(short value);
- /**
- * Gets the value of the type property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getType();
- /**
- * Sets the value of the type property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setType(java.lang.String value);
- /**
- * Gets the value of the choice property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getChoice();
- /**
- * Sets the value of the choice property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setChoice(java.lang.String value);
- /**
- * Gets the value of the required property.
- *
- */
- boolean isRequired();
- /**
- * Sets the value of the required property.
- *
- */
- void setRequired(boolean value);
- /**
- * Gets the value of the query property.
- *
- * @return
- * possible object is
- * {@link java.lang.String}
- */
- java.lang.String getQuery();
- /**
- * Sets the value of the query property.
- *
- * @param value
- * allowed object is
- * {@link java.lang.String}
- */
- void setQuery(java.lang.String value);
- }
|