1 2 3 4 5 6 7 8 9 10 11 12
class Getter { static boolean foo; static int bar; @java.lang.SuppressWarnings("all") public static boolean isFoo() { return Getter.foo; } @java.lang.SuppressWarnings("all") public static int getBar() { return Getter.bar; } }