aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputStaticVariableName.java
blob: 522caf88963761b5765e5e0d509a08e116bab65c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.puppycrawl.tools.checkstyle.checks.naming;

public class InputStaticVariableName {

	/** Interface fields should be skipped */
	interface A {
	    public static int VAL_0 = 1;
	}

	/** Annotation fields should be skipped */
	@interface B {
	    String name() default "";
	    int version() default 0;
	    public static int VAL_1 = 0;
	}
}