All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.palominolabs.metrics.guice.annotation.MethodAnnotationResolver Maven / Gradle / Ivy

There is a newer version: 5.0.1
Show newest version
package com.palominolabs.metrics.guice.annotation;

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

/**
 * Looks for annotations on the method itself.
 */
public class MethodAnnotationResolver implements AnnotationResolver {

    @Override
    @Nullable
    public  T findAnnotation(@Nonnull final Class annotationClass,
            @Nonnull final Method method) {
        return method.getAnnotation(annotationClass);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy