public static java.lang.ClassLoader | getSystemToolClassLoader()Returns the class loader for tools provided with this platform.
This does not include user-installed tools. Use the
{@linkplain java.util.ServiceLoader service provider mechanism}
for locating user installed tools.
if (Lazy.compilerClass == null)
return null;
return Lazy.compilerClass.getClassLoader();
|