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.

GenericInterfaceChain.java 179B

12345678
  1. public interface GenericInterfaceChain<T> extends Foo<String,T> {
  2. }
  3. interface Foo<A,B> extends Bar<B>,java.io.Serializable {
  4. }
  5. interface Bar<B> extends java.io.Serializable {
  6. }