FileDocCategorySizeDatePackage
BigDecimalHolder.javaAPI DocApache Axis 1.41293Sat Apr 22 18:57:28 BST 2006javax.xml.rpc.holders

BigDecimalHolder

public final class BigDecimalHolder extends Object implements Holder
Holder for BigDecimals.
version
1.0

Fields Summary
public BigDecimal
value
The BigDecimal contained by this holder.
Constructors Summary
public BigDecimalHolder()
Make a new BigDecimalHolder with a null value.

public BigDecimalHolder(BigDecimal value)
Make a new BigDecimalHolder with value as the value.

param
value the BigDecimal to hold

        this.value = value;
    
Methods Summary