File: W.java

package info (click to toggle)
bsh 1.0-beta-2
  • links: PTS
  • area: contrib
  • in suites: potato
  • size: 1,804 kB
  • ctags: 1,857
  • sloc: java: 14,653; makefile: 53; sh: 14
file content (16 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package InheritanceTest;

class W implements B {
	public void a() {
		System.out.println("W.a()");
	}
	public void b() {
		System.out.println("W.b()");
	}
	public void w() {
		System.out.println("W.w()");
	}
	void w_() {
		System.out.println("W.w_()");
	}
}