View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-03/31/2009 04:14 PM(snajper)-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: 2009.04.30 at 06:20:20 PM CEST 
6   //
7   
8   
9   package org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.query;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlSeeAlso;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for FilterType complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="FilterType">
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;attribute name="negate" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
28   *     &lt;/restriction>
29   *   &lt;/complexContent>
30   * &lt;/complexType>
31   * </pre>
32   * 
33   * 
34   */
35  @XmlAccessorType(XmlAccessType.FIELD)
36  @XmlType(name = "FilterType")
37  @XmlSeeAlso({
38      CompoundFilterType.class,
39      SimpleFilterType.class
40  })
41  public class FilterType {
42  
43      @XmlAttribute
44      protected Boolean negate;
45  
46      /**
47       * Gets the value of the negate property.
48       * 
49       * @return
50       *     possible object is
51       *     {@link Boolean }
52       *     
53       */
54      public boolean isNegate() {
55          if (negate == null) {
56              return false;
57          } else {
58              return negate;
59          }
60      }
61  
62      /**
63       * Sets the value of the negate property.
64       * 
65       * @param value
66       *     allowed object is
67       *     {@link Boolean }
68       *     
69       */
70      public void setNegate(Boolean value) {
71          this.negate = value;
72      }
73  
74  }