Uses of Interface
org.springframework.classify.util.MethodInvoker

Packages that use MethodInvoker
org.springframework.classify.util   
 

Uses of MethodInvoker in org.springframework.classify.util
 

Classes in org.springframework.classify.util that implement MethodInvoker
 class SimpleMethodInvoker
          Simple implementation of the MethodInvoker interface that invokes a method on an object.
 

Methods in org.springframework.classify.util that return MethodInvoker
static MethodInvoker MethodInvokerUtils.getMethodInvokerByAnnotation(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType, java.lang.Object target)
          Create MethodInvoker for the method with the provided annotation on the provided object.
static MethodInvoker MethodInvokerUtils.getMethodInvokerByAnnotation(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType, java.lang.Object target, java.lang.Class<?>... expectedParamTypes)
          Create a MethodInvoker from the delegate based on the annotationType.
static MethodInvoker MethodInvokerUtils.getMethodInvokerByName(java.lang.Object object, java.lang.String methodName, boolean paramsRequired, java.lang.Class<?>... paramTypes)
          Create a MethodInvoker using the provided method name to search.
static MethodInvoker MethodInvokerUtils.getMethodInvokerForInterface(java.lang.Class<?> cls, java.lang.String methodName, java.lang.Object object, java.lang.Class<?>... paramTypes)
          Create a MethodInvoker using the provided interface, and method name from that interface.
static
<C,T> MethodInvoker
MethodInvokerUtils.getMethodInvokerForSingleArgument(java.lang.Object target)
          Create a MethodInvoker for the delegate from a single public method.
 



Copyright © 2011 SpringSource. All Rights Reserved.