Home
last modified time | relevance | path

Searched refs:findAdvisorsThatCanApply (Results 1 – 4 of 4) sorted by relevance

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/framework/autoproxy/
H A DAbstractAdvisorAutoProxyCreator.java87 List<Advisor> eligibleAdvisors = findAdvisorsThatCanApply(candidateAdvisors, beanClass, beanName); in findEligibleAdvisors()
112 protected List<Advisor> findAdvisorsThatCanApply( in findAdvisorsThatCanApply() method in AbstractAdvisorAutoProxyCreator
117 return AopUtils.findAdvisorsThatCanApply(candidateAdvisors, beanClass); in findAdvisorsThatCanApply()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/test/java/org/springframework/aop/aspectj/annotation/
H A DAbstractAspectJAdvisorFactoryTests.java366 assertTrue(AopUtils.findAdvisorsThatCanApply( in testIntroductionAdvisorExcludedFromTargetImplementingInterface()
371 …assertEquals(2, AopUtils.findAdvisorsThatCanApply(getFixture().getAdvisors(new SingletonMetadataAw… in testIntroductionAdvisorExcludedFromTargetImplementingInterface()
379 AopUtils.findAdvisorsThatCanApply( in testIntroductionOnTargetImplementingInterface()
404 AopUtils.findAdvisorsThatCanApply( in testIntroductionOnTargetExcludedByTypePattern()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/aspectj/annotation/
H A DAspectJProxyFactory.java121 advisors = AopUtils.findAdvisorsThatCanApply(advisors, getTargetClass()); in addAdvisorsFromAspectInstanceFactory()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/main/java/org/springframework/aop/support/
H A DAopUtils.java280 …public static List<Advisor> findAdvisorsThatCanApply(List<Advisor> candidateAdvisors, Class<?> cla… in findAdvisorsThatCanApply() method in AopUtils