1 2 3 4 5
package java.util.concurrent; public interface ThreadFactory { public abstract java.lang.Thread newThread(java.lang.Runnable r); }