Here you can find the source of getAnnotation(Method m, Class annotationClass)
@SuppressWarnings({ "rawtypes", "unchecked" }) public static Annotation getAnnotation(Method m, Class annotationClass)
//package com.java2s; import java.lang.annotation.Annotation; import java.lang.reflect.Method; public class Main { @SuppressWarnings({ "rawtypes", "unchecked" }) public static Annotation getAnnotation(Method m, Class annotationClass) { return m.getAnnotation(annotationClass); }// w w w . j a v a 2 s .com }