}
}
private State putCyclomaticComplexMethod(ReaderFile reader, State state) throws NumberFormatException, IOException {
ComplexCyclomatic complex = new ComplexCyclomatic();
MetricDefinition METHODNAME;
HashMap list = complex.getListMethodsCyclomaticComplex(reader);
Set set = list.entrySet();
Iterator i = set.iterator();
while (i.hasNext()) {
Map.Entry me = (Map.Entry) i.next();
METHODNAME = new MetricDefinition(DataStoreDefinition.CYCLOMATIC_COMPLEXITY + me.getKey().toString());
state.put(METHODNAME.getName(), Double.parseDouble(me.getValue().toString()));
}
return state;
}