Here you can find the source of getAnnotationsOf(Class annoClass)
public static Annotation[] getAnnotationsOf(Class annoClass)
//package com.java2s; //License from project: Open Source License import java.lang.annotation.Annotation; public class Main { public static Annotation[] getAnnotationsOf(Class annoClass) { return annoClass.getAnnotations(); }//from ww w. j a va 2s .c o m }