The Spring Framework

Uses of Class
org.springframework.util.MethodInvoker

Packages that use MethodInvoker
org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories. 
org.springframework.beans.support Classes supporting the org.springframework.beans package, such as utility classes for sorting and holding lists of beans. 
org.springframework.scheduling.quartz Support classes for the open source scheduler Quartz, allowing to set up Quartz Schedulers, JobDetails and Triggers as beans in a Spring context. 
org.springframework.scheduling.support Generic support classes for scheduling. 
org.springframework.scheduling.timer Scheduling convenience classes for the JDK 1.3+ Timer, allowing to set up Timers and ScheduledTimerTasks as beans in a Spring context. 
 

Uses of MethodInvoker in org.springframework.beans.factory.config
 

Subclasses of MethodInvoker in org.springframework.beans.factory.config
 class MethodInvokingFactoryBean
          FactoryBean which returns a value which is the result of a static or instance method invocation.
 

Uses of MethodInvoker in org.springframework.beans.support
 

Subclasses of MethodInvoker in org.springframework.beans.support
 class ArgumentConvertingMethodInvoker
          Subclass of MethodInvoker that tries to convert the given arguments for the actual target method via BeanWrapperImpl.
 

Uses of MethodInvoker in org.springframework.scheduling.quartz
 

Subclasses of MethodInvoker in org.springframework.scheduling.quartz
 class MethodInvokingJobDetailFactoryBean
          FactoryBean that exposes a JobDetail object which delegates job execution to a specified (static or non-static) method.
 

Methods in org.springframework.scheduling.quartz with parameters of type MethodInvoker
 void MethodInvokingJobDetailFactoryBean.MethodInvokingJob.setMethodInvoker(MethodInvoker methodInvoker)
          Set the MethodInvoker to use.
 

Uses of MethodInvoker in org.springframework.scheduling.support
 

Subclasses of MethodInvoker in org.springframework.scheduling.support
 class MethodInvokingRunnable
          Adapter that implements the Runnable interface as a configurable method invocation based on Spring's MethodInvoker.
 

Uses of MethodInvoker in org.springframework.scheduling.timer
 

Subclasses of MethodInvoker in org.springframework.scheduling.timer
 class MethodInvokingTimerTaskFactoryBean
          FactoryBean that exposes a TimerTask object that delegates job execution to a specified (static or non-static) method.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.