Home
last modified time | relevance | path

Searched defs:GenericConstructorTestHelper (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DConstructorTest.java191 static class GenericConstructorTestHelper<A extends String, E extends Exception> { class in ConstructorTest
192 public GenericConstructorTestHelper() throws E { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
193 public GenericConstructorTestHelper(A a) { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
194 public <B extends Integer> GenericConstructorTestHelper(A a, B b) { } in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DConstructorTest.java87 static class GenericConstructorTestHelper<T, S extends T, E extends Exception> { class in ConstructorTest
88 public GenericConstructorTestHelper(T t, S s) {} in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper
89 public GenericConstructorTestHelper() throws E{} in GenericConstructorTestHelper() method in ConstructorTest.GenericConstructorTestHelper