Good afternoon, ladies and gentlemen. Due to inexperience, I have this question. There is a code of my annotation, which is applied to the method in runtime:
@Target(value = ElementType.METHOD) @Retention(value = RetentionPolicy.RUNTIME) @interface CanRun{ int count(); } The question is, how can I make the annotation call the method as many times as will be specified in the count value?