File: class15.bsh

package info (click to toggle)
bsh 2.0b4-15
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 4,212 kB
  • sloc: java: 23,430; xml: 4,500; sh: 139; makefile: 30
file content (18 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
source("TestHarness.bsh");

class Foo15 {
	Foo15 getFoo() { return null; }
	void putFoo( Foo15 foo ) { }
	static Foo15 getFooStatic() { return null; }
	static void putFooStatic( Foo15 foo ) { }
}

interface Bar15 {
	Bar15 getBar();
	void putBar( Bar15 foo );
}

f = new Foo15();
ic=Bar15.class;

complete();