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

/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestC1.java47 public abstract C1 mc1(); method in class:C1
114 Method mc1 = cls.getMethod("mc1", new Class[0]);
118 Type rt_mc1 = mc1.getGenericReturnType();
184 Type[] pt_mc1 = mc1.getGenericParameterTypes();
187 "C1.mc1 has zero parameters";
214 Type[] et_mc1 = mc1.getGenericExceptionTypes();
217 "Method C1.mc1 should have no generic exception types";
231 TypeVariable[] tv_mc1 = mc1.getTypeParameters();
234 "Method C1.mc1 shoul
[all...]
H A DTestC2.java48 public abstract C0 mc1(); method in class:C0
90 public abstract <E, R> C0 mc1(E e); method in class:C2
325 Method mc1 = cls.getMethod("mc1", params2);
346 Type rt_mc1 = mc1.getGenericReturnType();
349 "Return type of mc1 is C0";
417 Type[] pt_mc1 = mc1.getGenericParameterTypes();
420 "C2.mc1 has one parameter";
447 Type[] et_mc1 = mc1.getGenericExceptionTypes();
450 "Method C0.mc1 shoul
[all...]

Completed in 28 milliseconds