Package org.gjt.sp.util

Examples of org.gjt.sp.util.WorkThreadPool$RunRequestsInAWTThread


   * Do not call.
   */
  public static void init()
  {
    int count = jEdit.getIntegerProperty("ioThreadCount",4);
    ioThreadPool = new WorkThreadPool("jEdit I/O",count);
    JARClassLoader classLoader = new JARClassLoader();
    for(int i = 0; i < ioThreadPool.getThreadCount(); i++)
    {
      ioThreadPool.getThread(i).setContextClassLoader(
        classLoader);
View Full Code Here

TOP

Related Classes of org.gjt.sp.util.WorkThreadPool$RunRequestsInAWTThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.