Package com.google.checkout.sdk.domain

Examples of com.google.checkout.sdk.domain.Money


   *    {@code makeMoney(new BigDecimal("0.01"))} represents 1 US cent, for
   *    instance.
   * @return A Money object of the correct {@code value}.
   */
  public Money makeMoney(BigDecimal value) {
    Money money = new Money();
    money.setCurrency(getMerchantCurrencyCode());
    money.setValue(Utils.normalize(value));

    return money;
  }
View Full Code Here

TOP

Related Classes of com.google.checkout.sdk.domain.Money

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.