View Javadoc
1   package com.puppycrawl.tools.checkstyle.grammar;
2   
3   @interface InputRegressionJavaAnnotation1 {
4       int f1 = 0;
5   
6       String[] m1();
7       String[] m2() default {};
8   
9       class SomeClass {
10          private SomeClass() {}
11      }
12  }
13  @interface ComplexAnnotation {
14      InputRegressionJavaAnnotation1[] value();
15  }