FileDocCategorySizeDatePackage
Holder.javaAPI DocJava SE 6 API623Tue Jun 10 00:27:14 BST 2008javax.xml.ws

Holder

public final class Holder extends Object
Holds a value of type T.
since
JAX-WS 2.0

Fields Summary
public T
value
The value contained in the holder.
Constructors Summary
public Holder()
Creates a new holder with a null value.

  
public Holder(T value)
Create a new holder with the specified value.

param
value The value to be stored in the holder.

      this.value = value;
  
Methods Summary