Android examples for java.lang.reflect:Annotation
get Annotations from Object
//package com.java2s; import java.lang.annotation.Annotation; public class Main { public static void getAnnotations(Object object) { Annotation[] annotations = object.getClass().getAnnotations(); for (Annotation annotation : annotations) { // annotation. }/*w ww . j a va 2 s . co m*/ } }