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

IntHolder

public final class IntHolder extends Object implements Holder
Holder for ints.
version
1.0

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

public IntHolder(int value)
Make a new IntHolder with value as the value.

param
value the int to hold

        this.value = value;
    
Methods Summary