| java.lang.Object org.zkoss.lang.ThreadLocals
ThreadLocals | public class ThreadLocals (Code) | | ThreadLocal related utilties. This implementation get the static
ThreadLocal via reflection.
author: henrichen |
getThreadLocal | public static ThreadLocal getThreadLocal(String clsname, String fldname)(Code) | | Given class name and static ThreadLocal field name, return the associated ThreadLocal.
Parameters: clsname - the class name Parameters: fldname - the ThreadLocal field name |
getThreadLocal | public static ThreadLocal getThreadLocal(Class cls, String fldname)(Code) | | Given class and static ThreadLocal field name, return the associated ThreadLocal.
Parameters: cls - the class Parameters: fldname - the ThreadLocal field name. |
|
|