View Javadoc
1   package com.puppycrawl.tools.checkstyle.grammar.antlr4;
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  
14  @interface ComplexAnnotation {
15      InputRegressionJavaAnnotation1[] value();
16  }