Back to project page Book-MetaSearch.
The source code is released under:
Apache License
If you think the Android project Book-MetaSearch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ECS.client.jax; //w ww . j a v a 2 s . c o m public class VariationSummary { protected Price lowestPrice; protected Price highestPrice; protected Price lowestSalePrice; protected Price highestSalePrice; /** * Gets the value of the lowestPrice property. * * @return * possible object is * {@link Price } * */ public Price getLowestPrice() { return lowestPrice; } /** * Sets the value of the lowestPrice property. * * @param value * allowed object is * {@link Price } * */ public void setLowestPrice(Price value) { this.lowestPrice = value; } /** * Gets the value of the highestPrice property. * * @return * possible object is * {@link Price } * */ public Price getHighestPrice() { return highestPrice; } /** * Sets the value of the highestPrice property. * * @param value * allowed object is * {@link Price } * */ public void setHighestPrice(Price value) { this.highestPrice = value; } /** * Gets the value of the lowestSalePrice property. * * @return * possible object is * {@link Price } * */ public Price getLowestSalePrice() { return lowestSalePrice; } /** * Sets the value of the lowestSalePrice property. * * @param value * allowed object is * {@link Price } * */ public void setLowestSalePrice(Price value) { this.lowestSalePrice = value; } /** * Gets the value of the highestSalePrice property. * * @return * possible object is * {@link Price } * */ public Price getHighestSalePrice() { return highestSalePrice; } /** * Sets the value of the highestSalePrice property. * * @param value * allowed object is * {@link Price } * */ public void setHighestSalePrice(Price value) { this.highestSalePrice = value; } }