clazz = jdkCompiler.compile(javaSource);
fullname = "[" + javaSource.toString() + "]SourceText";
}
if (clazz == null) {
throw new ExtensionLoadException("ERROR ## classload this fileresolver=" + fullname + " has an error");
}
try {
return clazz.newInstance();
} catch (Exception e) {
throw new ExtensionLoadException("ERROR ## classload this fileresolver=" + fullname + " has an error", e);
}
}