blob: b1e6789a99edf8684bfe71ec2e215958a4697d4a (
plain)
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
26
27
|
// Class inner_interface
// Generated on Fri Feb 11 16:29:04 PST 2000
// Simple inner interface example.
class inner_interface {
interface bar {
static final int field = 14022000;
public void inner_interface ();
}
class baz implements inner_interface.bar {
public void inner_interface ()
{
System.out.println ("This is baz.inner_interface "+field);
}
}
void x () {
this.new baz ().inner_interface ();
}
public static void main (String[] arg)
{
System.out.println ("Testing class `inner_interface'...");
new inner_interface ().x();
}
}
|