com.fitbur.mockito.bytebuddy.description.annotation.AnnotatedCodeElement Maven / Gradle / Ivy
The newest version!
package com.fitbur.mockito.bytebuddy.description.annotation;
/**
* Describes an element that declares annotations.
*/
public interface AnnotatedCodeElement {
/**
* Returns a list of annotations that are declared by this instance.
*
* @return A list of declared annotations.
*/
AnnotationList getDeclaredAnnotations();
}