Home | History | Annotate | Download | only in reflect

Lines Matching defs:typeVariable

21 import java.lang.reflect.TypeVariable;
51 TypeVariable<Method> typeParameter = getTypeParameter(method);
69 TypeVariable<Method> typeParameter = getTypeParameter(method);
73 assertTrue(genericParameterType instanceof TypeVariable);
74 TypeVariable<?> typeVariable = (TypeVariable<?>) genericParameterType;
75 assertEquals(method, typeVariable.getGenericDeclaration());
77 Type[] paramBounds = typeVariable.getBounds();
87 assertTrue(genericReturnType instanceof TypeVariable);
89 TypeVariable<Method> returnTypeVariable = (TypeVariable<Method>) genericReturnType;