Annotations tests

This commit is contained in:
Emmanuel BENOîT 2015-09-12 14:09:18 +02:00
parent 4366b4198d
commit 4a4ff17cc8
9 changed files with 380 additions and 0 deletions
src/test/java/info/ebenoit/ebul/reflection

View file

@ -0,0 +1,13 @@
package info.ebenoit.ebul.reflection;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention( RetentionPolicy.RUNTIME )
public @interface ATest1
{
// EMPTY
}