Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }