Home
last modified time | relevance | path

Searched refs:TypeVarBoundedType (Results 1 – 2 of 2) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DGenericMetadataSupport.java150 return new TypeVarBoundedType(typeParameter); in boundsOf()
546 public static class TypeVarBoundedType implements BoundedType { class in GenericMetadataSupport
549 public TypeVarBoundedType(TypeVariable<?> typeVariable) { in TypeVarBoundedType() method in GenericMetadataSupport.TypeVarBoundedType
578 return typeVariable.equals(((TypeVarBoundedType) o).typeVariable); in equals()
635 return wildcard.equals(((TypeVarBoundedType) o).typeVariable); in equals()
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
DGenericMetadataSupportTest.java148 …Type firstBoundOfE = ((GenericMetadataSupport.TypeVarBoundedType) typeVariableValue(genericMetadat… in paramType_with_type_parameters_return_type_of____paramType_with_type_params____resolved_to_Collection_and_type_argument_to_Parameterized_Set()