private void getMethodDeclarationListByNameMap(final JXPathContext context) {
List<Element> methodDeclElementList =
context.selectNodes("//" + FUNCTION_METHOD_DECL.getName() + "|//" + VOID_METHOD_DECL.getName());
for (Element methodElement : methodDeclElementList) {
MethodDeclaration methodDeclaration = new MethodDeclarationJdom(methodElement, this);
final String name = methodDeclaration.getName();
List<MethodDeclaration> methodDeclarationList = methodDeclarationListByNameMap.get(name);
if (methodDeclarationList == null) {
methodDeclarationList = new LinkedList<MethodDeclaration>();
methodDeclarationListByNameMap.put(name, methodDeclarationList);
}