ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ThreadFactory.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ThreadFactory.java (file contents):
Revision 1.10 by dl, Sun Jun 25 22:59:45 2006 UTC vs.
Revision 1.11 by jsr166, Mon Jun 26 02:43:54 2006 UTC

# Line 30 | Line 30 | package java.util.concurrent;
30   public interface ThreadFactory {
31  
32      /**
33 <     * Constructs a new <tt>Thread</tt>.  Implementations may also initialize
34 <     * priority, name, daemon status, <tt>ThreadGroup</tt>, etc.
33 >     * Constructs a new {@code Thread}.  Implementations may also initialize
34 >     * priority, name, daemon status, {@code ThreadGroup}, etc.
35       *
36       * @param r a runnable to be executed by new thread instance
37 <     * @return constructed thread, or <tt>null</tt> if the request to
38 <     * create a thread is rejected.
37 >     * @return constructed thread, or {@code null} if the request to
38 >     *         create a thread is rejected
39       */
40      Thread newThread(Runnable r);
41   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines