blob: dd7de86ade45b2fc283863111f5ed8039673bf10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
public class FieldNameConstantsUppercased {
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 I_AM_A_DVD_PLAYER = "iAmADvdPlayer";
public static final java.lang.String BUT_PRINT_ME_PLEASE = "butPrintMePlease";
}
}
|