}
});
final JavaProject jmav_project = new JavaProject(jmav_projectpath);
GestoreImpostazioni gestoreImpostazioni = new GestoreImpostazioni();
if(store.getBoolean("BV_LARGE_CLASS")) {
gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LargeClass);
gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LargeClass, 1, store.getInt("SG_LARGE_CLASS"));
}
if(store.getBoolean("BV_LONG_PAR_LIST")) {
gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LongParameterList);
gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LongParameterList, 1, store.getInt("SG_LONG_PAR_LIST"));
}
if(store.getBoolean("BV_LONG_METHOD")) {
gestoreImpostazioni.aggiungiSmell(GestoreImpostazioni.LongMethod);
gestoreImpostazioni.modificaSoglia(GestoreImpostazioni.LongMethod, 1, store.getInt("SG_LONG_METHOD"));
}
CalcolatoreMetriche calcolatoreMetriche = new CalcolatoreMetriche();
final GestoreAnalisi jmav_GestoreAnalisi = new GestoreAnalisi(gestoreImpostazioni, calcolatoreMetriche);