Event Dispatcher  v0.1.6-beta.1
Project that offers a small library that allows to subscribe and fire events.
ArraySources.java
Go to the documentation of this file.
1 package com.fermod.annotations;
2 
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.Target;
6 
7 import org.junit.jupiter.params.provider.ArgumentsSource;
8 
9 import java.lang.annotation.RetentionPolicy;
10 
11 @Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD})
12 @Retention(RetentionPolicy.RUNTIME)
13 @ArgumentsSource(ArrayArgumentsProvider.class)
14 public @interface ArraySources {
15  ArraySource[] arrays();
16 }