You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Blurgh.java 390B

123456789101112131415161718192021222324252627
  1. interface SecurityEntity {}
  2. class Goo {}
  3. interface Base {}
  4. interface Hoo<X> { public void m(X x);}
  5. class Foo<B extends Base, C extends B> extends Goo implements Hoo<B> {
  6. public void m(B b) {
  7. }
  8. }
  9. interface Interface1 extends Base {}
  10. class Impl1 implements Interface1 {}
  11. public class Blurgh {
  12. public static void main(String []argv) {
  13. new Foo<Interface1,Impl1>();
  14. }
  15. }