File: Super.java

package info (click to toggle)
mauve 20080616-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 26,856 kB
  • ctags: 21,952
  • sloc: java: 234,107; sh: 2,834; xml: 208; makefile: 59
file content (25 lines) | stat: -rw-r--r-- 296 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package gnu.testlet.java.lang.reflect.sub;

public class Super
{
  void s() 
  { 
  }

  protected static void t()
  {
  }
  
  protected void u()
  {
  }
  
  private void v()
  {
  }
  
  protected static char w = 'w';
  protected char x = 'x';
  static char y = 'y';
  private char z = 'z';
}