public HashMap getListMethodsCyclomaticComplex(ReaderFile readerfile) throws IOException {
MethodHash mh = new MethodHash(readerfile);
MethodsFeatury method = new MethodsFeatury();
HashMap complexcyclomatic = new HashMap();
ReaderMethod readermethod;
for (String line : readerfile.getArrayDataLines()) {
if (method.isFunction(line)) {
readermethod = new ReaderMethod(readerfile, mh.getNameMethod(line));
complexcyclomatic.put(mh.getNameMethod(line), getNumComplex(readermethod));
}
}
return complexcyclomatic;
}