View Javadoc
1   /*
2   RequireThis
3   checkFields = (default)true
4   checkMethods = (default)true
5   validateOnlyOverlapping = false
6   
7   
8   */
9   
10  package com.puppycrawl.tools.checkstyle.checks.coding.requirethis;
11  
12  public @interface InputRequireThisAnnotationInterface {
13      String DEFAULT_VALUE = "DEFAULT_VALUE";
14  
15      String value() default DEFAULT_VALUE;
16  
17      String[] results() default {};
18  }