Searched defs:GenericConstructorTestHelper (Results 1 – 2 of 2) sorted by relevance
191 static class GenericConstructorTestHelper<A extends String, E extends Exception> { class in ConstructorTest192 public GenericConstructorTestHelper() throws E { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper193 public GenericConstructorTestHelper(A a) { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper194 public <B extends Integer> GenericConstructorTestHelper(A a, B b) { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
87 static class GenericConstructorTestHelper<T, S extends T, E extends Exception> { class in ConstructorTest88 public GenericConstructorTestHelper(T t, S s) {} in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper89 public GenericConstructorTestHelper() throws E{} in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper