package prot; public class One { public int publicField; protected int protectedField; public static int publicStaticField; protected static int protectedStaticField; protected int[] protectedArrayOfInts; protected String[] protectedArrayOfStrings; protected long[][] protectedArrayOfArrayOfLongs; protected short protectedShortField; protected long protectedLongField; protected boolean protectedBooleanField; protected byte protectedByteField; protected char protectedCharField; protected double protectedDoubleField; protected float protectedFloatField; }