Rename LoadJava annotations test data

This commit is contained in:
Alexander Udalov
2013-09-06 20:02:23 +04:00
parent 5805598306
commit ccff9e38fe
22 changed files with 92 additions and 92 deletions

View File

@@ -0,0 +1,38 @@
package test;
public interface AnnotationInParam {
public @interface MyAnnotationWithParam {
MyAnnotation value();
}
public @interface MyAnnotation {
String value();
}
@MyAnnotationWithParam(@MyAnnotation("test"))
public class A {}
public @interface MyAnnotation2 {
String[] value();
}
public @interface MyAnnotationWithParam2 {
MyAnnotation2 value();
}
@MyAnnotationWithParam2(@MyAnnotation2({"test", "test2"}))
public class B {}
public @interface MyAnnotation3 {
String first();
String second();
}
public @interface MyAnnotationWithParam3 {
MyAnnotation3 value();
}
@MyAnnotationWithParam3(@MyAnnotation3(first = "f", second = "s"))
public class C {}
}