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