1 package annotations.toys; 2 3 import java.util.*; 4 5 public @interface SimplerAnnotation { 6 BalanceEnum be(); 7 8 int height(); 9 10 int[] wrappedHeight(); 11 12 Class<? super HashMap<String, String>> favoriteClass(); 13 } 14