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

LongHolder

public final class LongHolder extends Object implements Holder
Holder for longs.
version
1.0

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

public LongHolder(long value)
Make a new LongHolder with value as the value.

param
value the long to hold

        this.value = value;
    
Methods Summary