Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.mortbay.util
Class ByteArrayPool.BAThreadLocal  view ByteArrayPool.BAThreadLocal download ByteArrayPool.BAThreadLocal.java

java.lang.Object
  extended byjava.lang.ThreadLocal
      extended byorg.mortbay.util.ByteArrayPool.BAThreadLocal
Enclosing class:
ByteArrayPool

private static final class ByteArrayPool.BAThreadLocal
extends java.lang.ThreadLocal


Field Summary
 
Fields inherited from class java.lang.ThreadLocal
 
Constructor Summary
private ByteArrayPool.BAThreadLocal()
           
 
Method Summary
protected  java.lang.Object initialValue()
          Called once per thread on the first invocation of get(), if set() was not already called.
 
Methods inherited from class java.lang.ThreadLocal
get, remove, set
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ByteArrayPool.BAThreadLocal

private ByteArrayPool.BAThreadLocal()
Method Detail

initialValue

protected java.lang.Object initialValue()
Description copied from class: java.lang.ThreadLocal
Called once per thread on the first invocation of get(), if set() was not already called. The default implementation returns null. Often, this method is overridden to create the appropriate initial object for the current thread's view of the ThreadLocal.