OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:methodparametertypes
(Results
1 - 1
of
1
) sorted by null
/libcore/luni/src/test/java/libcore/java/lang/reflect/
OldGenericTypesTest.java
205
Type[]
methodParameterTypes
= declaredMethods.getGenericParameterTypes();
206
assertLenghtOne(
methodParameterTypes
);
207
assertEquals(typeVariable,
methodParameterTypes
[0]);
208
assertInstanceOf(TypeVariable.class,
methodParameterTypes
[0]);
209
TypeVariable<?> methodTypeVariable = (TypeVariable<?>)
methodParameterTypes
[0];
Completed in 855 milliseconds