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.XmlType;
15  
16  
17  /**
18   * <p>Java class for FloatFilterType complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="FloatFilterType">
24   *   &lt;complexContent>
25   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}SimpleFilterType">
26   *       &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}float" />
27   *     &lt;/extension>
28   *   &lt;/complexContent>
29   * &lt;/complexType>
30   * </pre>
31   * 
32   * 
33   */
34  @XmlAccessorType(XmlAccessType.FIELD)
35  @XmlType(name = "FloatFilterType")
36  public class FloatFilterType
37      extends SimpleFilterType
38  {
39  
40      @XmlAttribute(required = true)
41      protected float value;
42  
43      /**
44       * Gets the value of the value property.
45       * 
46       */
47      public float getValue() {
48          return value;
49      }
50  
51      /**
52       * Sets the value of the value property.
53       * 
54       */
55      public void setValue(float value) {
56          this.value = value;
57      }
58  
59  }