throws InvocationTargetException, IllegalAccessException
{
Collection<String> thisNameList = nameMap.get(clazz.getName());
if (thisNameList != null) {
for (Method method : clazz.getMethods()) {
Managed configAnnotation = method.getAnnotation(Managed.class);
if (configAnnotation != null) {
for (String thisName : thisNameList) {
builder.add(new InspectorRecord(thisName, method.getName(), configAnnotation.description(), getType(method)));
}
}
}
}
}