blob: bc3572f05cf693985b8966cb2134bdb931fd7ec6 [file] [log] [blame]
package org.eclipse.jdt.apt.tests.annotations.valueconversion;
public @interface AnnotationWithArray {
boolean[] booleans();
byte[] bytes();
short[] shorts();
int[] ints();
long[] longs();
float[] floats();
double[] doubles();
char[] chars();
String str() default "some string";
}