List<String> argClassNames = new ArrayList<String>();
for (int i = 0; i < numArgument; i++) {
// TODO: narrow this down to a type
argClassNames.add("Object");
}
proposals = new ConstructorArgQuickAssistProcessor(nodeInfo.offset, nodeInfo.length, className,
file.getProject(), false, argClassNames, nodeInfo.node)
.computeQuickAssistProposals(null);
}
}
}