File: Y.java

package info (click to toggle)
bsh 1.1alpha5-1
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 2,336 kB
  • ctags: 2,083
  • sloc: java: 16,095; makefile: 134; sh: 51
file content (13 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
package InheritanceTest;

public class Y extends X implements C {
	public void c() {
		System.out.println("Y.c()");
	}
	public void y() {
		System.out.println("Y.y()");
	}
	void y_() {
		System.out.println("Y.y_()");
	}
}