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; /*from w w w . j ava 2 s. c om*/ import java.math.BigInteger; public class Price { protected BigInteger amount; protected String currencyCode; protected String formattedPrice; /** * Gets the value of the amount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setAmount(BigInteger value) { this.amount = value; } /** * Gets the value of the currencyCode property. * * @return * possible object is * {@link String } * */ public String getCurrencyCode() { return currencyCode; } /** * Sets the value of the currencyCode property. * * @param value * allowed object is * {@link String } * */ public void setCurrencyCode(String value) { this.currencyCode = value; } /** * Gets the value of the formattedPrice property. * * @return * possible object is * {@link String } * */ public String getFormattedPrice() { return formattedPrice; } /** * Sets the value of the formattedPrice property. * * @param value * allowed object is * {@link String } * */ public void setFormattedPrice(String value) { this.formattedPrice = value; } }