public void aggiungiSmell(Integer idSmell) throws Exception {
if(idSmell == null) {
throw new ParameterNotNullException("Parametro idSmell non pu� essere null");
}
Smell smell = null;
if(idSmell == LargeClass) {
smell = new Smell("LargeClass");
}
if(idSmell == LongParameterList) {
smell = new Smell("LongParameterList");
}
if(idSmell == LongMethod) {
smell = new Smell("LongMethod");
}
if(smell != null) {
smells.put(idSmell, smell);
HashMap<Integer, Integer> soglia = new HashMap<Integer, Integer>();