Home
last modified time | relevance | path

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

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.beans/src/main/java/org/springframework/beans/factory/config/
H A DConstructorArgumentValues.java167 (requiredType != null && ClassUtils.matchesTypeName(requiredType, valueHolder.getType()))) && in getIndexedArgumentValue()
286 (requiredType == null || !ClassUtils.matchesTypeName(requiredType, valueHolder.getType()))) { in getGenericArgumentValue()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/util/
H A DClassUtils.java569 public static boolean matchesTypeName(Class<?> clazz, String typeName) { in matchesTypeName() method in ClassUtils