aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features160/annotationValueMatching/Test.java
blob: 5cf17a7b3f0167614905453120d838c367a26b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@Retention(RetentionPolicy.RUNTIME)
@interface ComplexAnnotation {
  int ival();
  byte bval();
  char cval();
  long jval();
  double dval();
  boolean zval();
  short sval();
  float fval();
//  Color enumval();
  String strval();
  Class classval();
  int[] arrayval();
}