Method add(BigDecimal augend)
Return type: java.math.BigDecimal
Member of: java.math.BigDecimal
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 myConstant = myConstant.add(aNmbr);
2 myBody[i] = myBody[i].add(val);
3 m_total = getTotal().add(wbl.getTotal());
4 b = b.add(a);
5 this.output = this.inputA.add(this.inputB);
6 outData[row][col] = data[row][col].add(d);
7 total = total.add((BigDecimal)model.getValueAt(i, 4));
8 sum = sum.add(type.toBigDecimal(val));
9 fraction = (s == 1) ? aTime.getFraction().add(aDuration.getFraction()) : aTime.getFraction().subtract(aDuration.getFraction());
10 return ((BigDecimal) a).add((BigDecimal) b);
11 BigDecimal newNextId = nextId.add(quantity);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.