Here you can find the source of add(BigDecimal one, BigDecimal another)
public static BigDecimal add(BigDecimal one, BigDecimal another)
//package com.java2s; //License from project: Apache License import java.math.BigDecimal; public class Main { public static BigDecimal add(BigDecimal one, BigDecimal another) { return one.add(another); }//from w w w . jav a 2s.c o m }