
org.reflections.scanners.MethodAnnotationsScanner Maven / Gradle / Ivy
The newest version!
package org.reflections.scanners;
import java.util.List;
@SuppressWarnings({"unchecked"})
/** scans for method's annotations */
public class MethodAnnotationsScanner extends AbstractScanner {
public void scan(final Object cls) {
for (Object method : getMetadataAdapter().getMethods(cls)) {
for (String methodAnnotation : (List) getMetadataAdapter().getMethodAnnotationNames(method)) {
if (acceptResult(methodAnnotation)) {
getStore().put(methodAnnotation, getMetadataAdapter().getMethodFullKey(cls, method));
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy