org.firebirdsql.pool
Class BlockingStack.Node
java.lang.Object
org.firebirdsql.pool.BlockingStack.Node
- BlockingStack
protected class BlockingStack.Node
extends java.lang.Object
Container class for objects in the stack.
Node() - Creates a node with null object and null next node.
|
Node(Object object) - Creates a node with the specified object and null next node.
|
Node(Object object, BlockingStack.Node next) - Creates a Node with the specific object and next node.
|
Node
public Node()
Creates a node with null object and null next node.
Node
public Node(Object object)
Creates a node with the specified object and null next node.
Node
public Node(Object object,
BlockingStack.Node next)
Creates a Node with the specific object and next node.
getObject
public Object getObject()
setObject
public void setObject(Object object)
object
- The object to set.
Copyright B) 2001 David Jencks and other authors. All rights reserved.