Home
last modified time | relevance | path

Searched refs:getMostSpecificMethod (Results 1 – 16 of 16) sorted by relevance

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/support/
H A DAopUtils.java179 public static Method getMostSpecificMethod(Method method, Class<?> targetClass) { in getMostSpecificMethod() method in AopUtils
180 Method resolvedMethod = ClassUtils.getMostSpecificMethod(method, targetClass); in getMostSpecificMethod()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/support/annotation/
H A DAnnotationMethodMatcher.java55 Method specificMethod = AopUtils.getMostSpecificMethod(method, targetClass); in matches()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web/src/main/java/org/springframework/web/method/
H A DHandlerMethodSelector.java60 Method specificMethod = ClassUtils.getMostSpecificMethod(method, targetClass); in selectMethods()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/main/java/org/springframework/cache/interceptor/
H A DLazyParamAwareEvaluationContext.java91 targetMethod = AopUtils.getMostSpecificMethod(this.method, this.targetClass); in loadArgsAsVariables()
H A DAbstractFallbackCacheOperationSource.java133 Method specificMethod = ClassUtils.getMostSpecificMethod(method, targetClass); in computeCacheOperations()
H A DCacheAspectSupport.java153 Method specificMethod = ClassUtils.getMostSpecificMethod(method, targetClass); in methodIdentification()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.transaction/src/main/java/org/springframework/transaction/interceptor/
H A DAbstractFallbackTransactionAttributeSource.java141 Method specificMethod = ClassUtils.getMostSpecificMethod(method, userClass); in computeTransactionAttribute()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web/src/main/java/org/springframework/web/bind/annotation/support/
H A DHandlerMethodResolver.java86 Method specificMethod = ClassUtils.getMostSpecificMethod(method, targetClass); in init()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/aspectj/
H A DAspectJExpressionPointcut.java271 Method targetMethod = AopUtils.getMostSpecificMethod(method, targetClass); in matches()
300 …ShadowMatch shadowMatch = getShadowMatch(AopUtils.getMostSpecificMethod(method, targetClass), meth… in matches()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.portlet/src/main/java/org/springframework/web/portlet/mvc/annotation/
H A DAnnotationMethodHandlerExceptionResolver.java155 method = ClassUtils.getMostSpecificMethod(method, handlerType); in findBestExceptionHandlerMethod()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/mvc/annotation/
H A DAnnotationMethodHandlerExceptionResolver.java179 method = ClassUtils.getMostSpecificMethod(method, handlerType); in findBestExceptionHandlerMethod()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.orm/src/main/java/org/springframework/orm/jpa/support/
H A DPersistenceAnnotationBeanPostProcessor.java388 method.equals(ClassUtils.getMostSpecificMethod(method, clazz))) { in findPersistenceMetadata()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.beans/src/main/java/org/springframework/beans/factory/annotation/
H A DAutowiredAnnotationBeanPostProcessor.java348 if (annotation != null && method.equals(ClassUtils.getMostSpecificMethod(method, clazz))) { in buildAutowiringMetadata()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/main/java/org/springframework/context/annotation/
H A DCommonAnnotationBeanPostProcessor.java348 …pecificMethod = BridgeMethodResolver.findBridgedMethod(ClassUtils.getMostSpecificMethod(method, cl… in findResourceMetadata()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/util/
H A DClassUtils.java736 public static Method getMostSpecificMethod(Method method, Class<?> targetClass) { in getMostSpecificMethod() method in ClassUtils
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.beans/src/test/java/org/springframework/beans/
H A DExtendedBeanInfoTests.java923 Method msReadMethod = ClassUtils.getMostSpecificMethod(readMethod, B.class); in cornerSpr8949()