Interface AnnotationRepository
-
public interface AnnotationRepositoryA AnnotationRepository.- Author:
- Stefano Maestri
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<Annotation>getAnnotation(Class<?> class1)Return a collection of annotation of given type.
-
-
-
Method Detail
-
getAnnotation
Collection<Annotation> getAnnotation(Class<?> class1)
Return a collection of annotation of given type. In case no annotation has been found it return null.- Parameters:
class1- the type of annotation looking for.- Returns:
- a collection of annotations founded. Null in case of no one has been founded.
-
-