package java.util.concurrent; public class Executors { Executors() { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ExecutorService newFixedThreadPool(int nThreads) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ExecutorService newFixedThreadPool(int nThreads, java.util.concurrent.ThreadFactory threadFactory) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ExecutorService newSingleThreadExecutor() { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ExecutorService newSingleThreadExecutor(java.util.concurrent.ThreadFactory threadFactory) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ExecutorService newCachedThreadPool() { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ExecutorService newCachedThreadPool(java.util.concurrent.ThreadFactory threadFactory) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ScheduledExecutorService newSingleThreadScheduledExecutor() { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ScheduledExecutorService newSingleThreadScheduledExecutor(java.util.concurrent.ThreadFactory threadFactory) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ScheduledExecutorService newScheduledThreadPool(int corePoolSize) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ScheduledExecutorService newScheduledThreadPool(int corePoolSize, java.util.concurrent.ThreadFactory threadFactory) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ExecutorService unconfigurableExecutorService(java.util.concurrent.ExecutorService executor) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ScheduledExecutorService unconfigurableScheduledExecutorService(java.util.concurrent.ScheduledExecutorService executor) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ThreadFactory defaultThreadFactory() { throw new RuntimeException("Stub!"); } public static java.util.concurrent.ThreadFactory privilegedThreadFactory() { throw new RuntimeException("Stub!"); } public static java.util.concurrent.Callable callable(java.lang.Runnable task, T result) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.Callable callable(java.lang.Runnable task) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.Callable callable(java.security.PrivilegedAction action) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.Callable callable(java.security.PrivilegedExceptionAction action) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.Callable privilegedCallable(java.util.concurrent.Callable callable) { throw new RuntimeException("Stub!"); } public static java.util.concurrent.Callable privilegedCallableUsingCurrentClassLoader(java.util.concurrent.Callable callable) { throw new RuntimeException("Stub!"); } }