return result;
}
private MethodSignature getMethodSignature(CtMethod method)
{
MethodSignature result = _methodSignatures.get(method);
if (result == null)
{
try
{
String type = method.getReturnType().getName();
String[] parameters = toTypeNames(method.getParameterTypes());
String[] exceptions = toTypeNames(method.getExceptionTypes());
result = new MethodSignature(method.getModifiers(), type, method.getName(),
parameters, exceptions);
_methodSignatures.put(method, result);
}
catch (NotFoundException ex)