// Get the Code object, which contains the local variable table.
Code code = bmeth.getCode(false);
if (code == null)
return null;
LocalVariableTable table = code.getLocalVariableTable(false);
if (table == null)
return null;
// OK, found it. Now scan through the local variables and record
// the names in the right indices.
LocalVariable [] vars = table.getLocalVariables();
String [] argNames = new String[numParams + 1];
argNames[0] = null; // don't know return name
// NOTE: we scan through all the variables here, because I have been