5253545556575859
smells.put(idSmell, smell); HashMap<Integer, Integer> soglia = new HashMap<Integer, Integer>(); soglia.put(1, Integer.MAX_VALUE); soglie.put(idSmell, soglia); } else { throw new ValueNotFoundException("Valore idSmell non trovato"); } }
6667686970717273
Smell smell = smells.remove(idSmell); if(smell != null) { soglie.remove(idSmell); } else { throw new ValueNotFoundException("Valore idSmell non trovato"); } }
8384858687888990
HashMap<Integer,Integer> soglieSmell = soglie.get(idSmell); if(soglieSmell != null) { return new ArrayList<Integer>(soglieSmell.values()); } else { throw new ValueNotFoundException("Valore idSmell non trovato"); } }
100101102103104105106107108109110
if(soglieSmell != null) { Integer soglia = soglieSmell.get(idSoglia); if(soglia != null) { return soglia; } else { throw new ValueNotFoundException("Valore idSoglia non trovato"); } } else { throw new ValueNotFoundException("Valore idSmell non trovato"); } }
123124125126127128129130131132133
if(soglieSmell != null) { Integer soglia = soglieSmell.get(idSoglia); if(soglia != null) { soglie.get(idSmell).put(idSoglia, nuovoValore); } else { throw new ValueNotFoundException("Valore idSoglia non trovato"); } } else { throw new ValueNotFoundException("Valore idSmell non trovato"); } }