Java examples for java.lang.annotation:Annotation Element
get Annotation from Annotated Element
//package com.java2s; import java.lang.annotation.Annotation; import java.lang.reflect.AnnotatedElement; public class Main { public static Annotation getAnnotation(AnnotatedElement element, Class<? extends Annotation> annotation) { return element.getAnnotation(annotation); }// w w w.ja v a2s.co m }