// what now?
}
}
// Obtain the exact method we're interested in.
BCMethod bmeth = bclass.getMethod(method.getName(),
method.getParameterTypes());
if (bmeth == null)
return null;
// Get the Code object, which contains the local variable table.
Code code = bmeth.getCode();
if (code == null)
return null;
LocalVariableTableAttribute attr =
(LocalVariableTableAttribute)code.getAttribute(Constants.ATTR_LOCALS);