Home | History | Annotate | Download | only in resources
      1 class Super {
      2     protected boolean k;
      3     public static char m;
      4 }
      5 
      6 interface SuperSuperInterface {
      7     public int o;
      8 }
      9 
     10 interface SuperInterface extends SuperSuperInterface {
     11     public int p;
     12 }
     13 
     14 class A extends Super implements SuperInterface {
     15 
     16     private int i;
     17     private static long j;
     18 
     19     public void foo1(){
     20         return i;
     21     }
     22 
     23     public void foo2(){
     24         return j;
     25     }
     26 
     27     public void foo3(){
     28         return k;
     29     }
     30 
     31     public void foo4(){
     32         return m;
     33     }
     34 
     35     public void foo5(){
     36         return o;
     37     }
     38 
     39 }
     40