Package er.profiling.classloader

Examples of er.profiling.classloader.WeavingClassLoader


    ClassLoader cl = Thread.currentThread().getContextClassLoader();
    if (cl instanceof URLClassLoader && !premainHasRun) {
      premainHasRun = true;
      System.setProperty(WeavingClassLoader.GLUE_NAME_KEY, PFProfilerMixin.class.getName());
      URLClassLoader loader = (URLClassLoader) cl;
      ClassLoader newCl = new WeavingClassLoader(loader.getURLs(), loader.getParent());
      Thread.currentThread().setContextClassLoader(newCl);
    }
  }
View Full Code Here

TOP

Related Classes of er.profiling.classloader.WeavingClassLoader

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.