use of org.reflections.adapters.MetadataAdapter in project reflections by ronmamo.
the class MethodParameterNamesScanner method scan.
@Override
public void scan(Object cls) {
final MetadataAdapter md = getMetadataAdapter();
for (Object method : md.getMethods(cls)) {
String key = md.getMethodFullKey(cls, method);
if (acceptResult(key)) {
LocalVariableAttribute table = (LocalVariableAttribute) ((MethodInfo) method).getCodeAttribute().getAttribute(LocalVariableAttribute.tag);
int length = table.tableLength();
//skip this
int i = Modifier.isStatic(((MethodInfo) method).getAccessFlags()) ? 0 : 1;
if (i < length) {
List<String> names = new ArrayList<String>(length - i);
while (i < length) names.add(((MethodInfo) method).getConstPool().getUtf8Info(table.nameIndex(i++)));
getStore().put(key, Joiner.on(", ").join(names));
}
}
}
}
use of org.reflections.adapters.MetadataAdapter in project reflections by ronmamo.
the class MethodParameterScanner method scan.
@Override
public void scan(Object cls) {
final MetadataAdapter md = getMetadataAdapter();
for (Object method : md.getMethods(cls)) {
String signature = md.getParameterNames(method).toString();
if (acceptResult(signature)) {
getStore().put(signature, md.getMethodFullKey(cls, method));
}
String returnTypeName = md.getReturnTypeName(method);
if (acceptResult(returnTypeName)) {
getStore().put(returnTypeName, md.getMethodFullKey(cls, method));
}
List<String> parameterNames = md.getParameterNames(method);
for (int i = 0; i < parameterNames.size(); i++) {
for (Object paramAnnotation : md.getParameterAnnotationNames(method, i)) {
if (acceptResult((String) paramAnnotation)) {
getStore().put((String) paramAnnotation, md.getMethodFullKey(cls, method));
}
}
}
}
}
Aggregations