Revision: 849
http://svn.sourceforge.net/fb-contrib/?rev=849&view=rev
Author: dbrosius
Date: 2007-02-09 15:31:55 -0800 (Fri, 09 Feb 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/fb-contrib/samples/SCII_Sample.java
Modified: trunk/fb-contrib/samples/SCII_Sample.java
===================================================================
--- trunk/fb-contrib/samples/SCII_Sample.java 2007-02-09 23:30:56 UTC (rev 848)
+++ trunk/fb-contrib/samples/SCII_Sample.java 2007-02-09 23:31:55 UTC (rev 849)
@@ -30,4 +30,26 @@
// TODO Auto-generated method stub
}
+
+ interface A
+ {
+ public void a();
+ }
+
+ interface B extends A
+ {
+ public void b();
+ }
+
+ class AA implements A
+ {
+ public void a() {}
+
+ public void b() {}
+ }
+
+ class BB extends AA implements B
+ {
+
+ }
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|