FileDocCategorySizeDatePackage
BooleanHolder.javaAPI DocApache Axis 1.41233Sat Apr 22 18:57:26 BST 2006javax.xml.rpc.holders

BooleanHolder

public final class BooleanHolder extends Object implements Holder
Holder for booleans.
version
1.0

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

public BooleanHolder(boolean value)
Make a new BooleanHolder with value as the value.

param
value the boolean to hold

        this.value = value;
    
Methods Summary