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

DoubleHolder

public final class DoubleHolder extends Object implements Holder
Holder for doubles.
version
1.0

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

public DoubleHolder(double value)
Make a new DoubleHolder with value as the value.

param
value the double to hold

        this.value = value;
    
Methods Summary