I\'m attempting to slap two or more annotations of the same type on a single element, in this case, a method. Here\'s the approximate code that I\'m working with:
combining the other answers into the simplest form ... an annotation with a simple list of values ...
@Foos({"one","two"}) private String awk; //... public @interface Foos{ String[] value(); }