decompiler.setClassPath( new ClassPath( new ClassPath.Location[] { engineLocation,
ClassPath.createLocation( "reflection:" ) } ) );
for (String className : this.engine.getClassNamesAndBytes().keySet()) {
final StringWriter writer = new StringWriter();
decompiler.decompile( className, writer, null );
final String source = stripHeaderCommentFrom( writer.toString() );
classes.put( className, source );
}
return new ByteCodeEngineSourceImpl( classes );