From 2047d8e479efea09e4f812662fc38e57f9f37226 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Mon, 18 Oct 2004 10:41:56 +0000 Subject: Math.java, [...]: Reworked import statements, HTML in javadocs and modifier orders. 2004-10-18 Michael Koch * java/lang/Math.java, java/lang/Package.java, java/lang/Runtime.java, java/lang/StrictMath.java, java/lang/System.java, java/lang/Thread.java, java/lang/ThreadLocal.java, java/lang/Void.java: Reworked import statements, HTML in javadocs and modifier orders. From-SVN: r89207 --- libjava/java/lang/ThreadLocal.java | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'libjava/java/lang/ThreadLocal.java') diff --git a/libjava/java/lang/ThreadLocal.java b/libjava/java/lang/ThreadLocal.java index 9725659..d9967c6 100644 --- a/libjava/java/lang/ThreadLocal.java +++ b/libjava/java/lang/ThreadLocal.java @@ -41,6 +41,7 @@ import java.util.Collections; import java.util.Map; import java.util.WeakHashMap; + /** * ThreadLocal objects have a different state associated with every * Thread that accesses them. Every access to the ThreadLocal object @@ -51,8 +52,11 @@ import java.util.WeakHashMap; *

The first time a ThreadLocal object is accessed on a particular * Thread, the state for that Thread's copy of the local variable is set by * executing the method initialValue(). + *

* *

An example how you can use this: + *

+ * *
  * class Connection
  * {
@@ -65,20 +69,22 @@ import java.util.WeakHashMap;
  *     };
  * ...
  * }
- * 

+ * * - * Now all instances of connection can see who the owner of the currently + *

Now all instances of connection can see who the owner of the currently * executing Thread is by calling owner.get(). By default any * Thread would be associated with 'nobody'. But the Connection object could * offer a method that changes the owner associated with the Thread on * which the method was called by calling owner.put("somebody"). * (Such an owner changing method should then be guarded by security checks.) + *

* *

When a Thread is garbage collected all references to values of * the ThreadLocal objects associated with that Thread are removed. + *

* - * @author Mark Wielaard - * @author Eric Blake + * @author Mark Wielaard (mark@klomp.org) + * @author Eric Blake (ebb9@email.byu.edu) * @since 1.2 * @status updated to 1.4 */ -- cgit v1.1