* at the searchStarted event, if the option nhandler.reset is set to true,
* all the peer classes created on the fly are removed.
*/
@Override
public void searchStarted(Search search){
Config config = search.getConfig();
boolean reset = config.getBoolean("nhandler.clean");
if(reset) {
String path = config.getPath("jpf-nhandler") + "/onthefly";
File onthefly = new File(path);
String[] peers = onthefly.list();
for(String name: peers) {
if((reset && name.startsWith("OTF_JPF_") && (name.endsWith(".class") || name.endsWith(".java")))) {