1 package test3;
2 
3 @SuppressWarnings("unused")
4 class SuperGetMethods {
5     public int f0;
6     protected double d0;
7     String s0;
8     private char c0;
9 
mpub0()10     public void mpub0() {}
mpro0()11     protected void mpro0() {}
mpack0()12     void mpack0() {}
mpri0()13     private void mpri0() {}
14 }
15 
16 @SuppressWarnings("unused")
17 public class GetMethods extends SuperGetMethods {
GetMethods(int i)18     public GetMethods(int i) {}
GetMethods(String i, int j)19     protected GetMethods(String i, int j) {}
GetMethods()20     GetMethods() {}
GetMethods(int i, int j)21     private GetMethods(int i, int j) {}
22 
23     public int f;
24     protected double d;
25     String s;
26     private char c;
27 
mpub()28     public void mpub() {}
mpro()29     protected void mpro() {}
mpack()30     void mpack() {}
mpri()31     private void mpri() {}
32 }
33