Event Dispatcher  v0.1.6-beta.1
Project that offers a small library that allows to subscribe and fire events.
ArraySource.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 import java.lang.annotation.RetentionPolicy;
7 
8 @Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD})
9 @Retention(RetentionPolicy.RUNTIME)
10 public @interface ArraySource {
11  int[] array() default {};
12 }