// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-792 // 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: 2011.04.07 at 12:06:52 PM GMT+05:30 // package com.ebay.marketplace.search.v1.services; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * * A type that specifies a range bounded by lower * and upper bounds. * * * <p>Java class for RangeValue complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RangeValue"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lowerBound" type="{http://www.w3.org/2001/XMLSchema}double"/> * <element name="upperBound" type="{http://www.w3.org/2001/XMLSchema}double"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RangeValue", propOrder = { "lowerBound", "upperBound" }) public class RangeValue { protected double lowerBound; protected double upperBound; /** * Gets the value of the lowerBound property. * */ public double getLowerBound() { return lowerBound; } /** * Sets the value of the lowerBound property. * */ public void setLowerBound(double value) { this.lowerBound = value; } /** * Gets the value of the upperBound property. * */ public double getUpperBound() { return upperBound; } /** * Sets the value of the upperBound property. * */ public void setUpperBound(double value) { this.upperBound = value; } }