Searched defs:mc1t (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestC1.java45 public abstract C1<T> mc1t(T t, C1<T> c1t, C1 c1); method in class:C1
113 Method mc1t = cls.getMethod("mc1t", params1);
117 Type rt_mc1t = mc1t.getGenericReturnType();
121 Type[] pt_mc1t = mc1t.getGenericParameterTypes();
125 "C1.mc1t has three parameters";
130 "Generic type of the 1st parameter of mc1t(T) is a type variable";
135 "Name of 1st type parameter of mc1t is T, not " + tv.getName();
139 "T should have one bound (mc1t)";
142 "The bound of T should be Object (mc1t)";
[all...]
H A DTestC2.java46 public abstract C0<T> mc1t(T t, C0<T> c1t, C0 c1); method in class:C0
88 public abstract <T> C0<T> mc1t(T3 t3, C0<T> c1t, C0 c1); method in class:C2
324 Method mc1t = cls.getMethod("mc1t", params1);
328 Type rt_mc1t = mc1t.getGenericReturnType();
331 "The return type of mc1t should be a parameterized type";
336 "The raw return type of mc1t should be C0";
341 "Return type of mc1t should have one type argument";
344 "Type argument of return type of mc1t is a type variable";
356 Type[] pt_mc1t = mc1t
[all...]

Completed in 39 milliseconds