Searched refs:HasTypeParameters (Results 1 – 2 of 2) sorted by relevance
150 TypeVariable<Class<HasTypeParameters>>[] typeVariables in testTypeVariableWithNoBound()151 = HasTypeParameters.class.getTypeParameters(); in testTypeVariableWithNoBound()157 assertEquals(HasTypeParameters.class, aTv.getGenericDeclaration()); in testTypeVariableWithNoBound()161 assertEqualsBothWays(aTl, TypeLiteral.get(HasTypeParameters.class.getTypeParameters()[0])); in testTypeVariableWithNoBound()165 TypeVariable<Class<HasTypeParameters>>[] typeVariables in testTypeVariablesWithSingleBound()166 = HasTypeParameters.class.getTypeParameters(); in testTypeVariablesWithSingleBound()172 assertEquals(HasTypeParameters.class, cTv.getGenericDeclaration()); in testTypeVariablesWithSingleBound()176 assertEqualsBothWays(cTl, TypeLiteral.get(HasTypeParameters.class.getTypeParameters()[2])); in testTypeVariablesWithSingleBound()180 TypeVariable<Class<HasTypeParameters>>[] typeVariables in testTypeVariableWithMultipleBounds()181 = HasTypeParameters.class.getTypeParameters(); in testTypeVariableWithMultipleBounds()[all …]
237 class HasTypeParameters<A, B extends List<A> & Runnable, C extends Runnable> { class in KeyTest