aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/FieldNameConstantsBasic.java
blob: 0504327ab66bdaa1629d844f2704155e857a7ebf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public class FieldNameConstantsBasic {
	String iAmADvdPlayer;
	int $skipMe;
	static double skipMeToo;
	int andMe;
	String butPrintMePlease;
	@java.lang.SuppressWarnings("all")
	static final class Fields {
		public static final java.lang.String iAmADvdPlayer = "iAmADvdPlayer";
		public static final java.lang.String butPrintMePlease = "butPrintMePlease";
	}
}