// Add the generated class files to the {@link ByteArrayClassLoader}.
for (int i = 0; i < classFiles.length; ++i) {
ClassFile cf = classFiles[i];
String className = cf.getThisClassName();
if (EvaluatorBase.DEBUG) System.out.println("Define class \"" + className + "\".");
this.byteArrayClassLoader.addClass(className, cf.toByteArray());
}
return this.byteArrayClassLoader;
}