Uses of Class
org.apache.hivemind.service.MethodSignature

Packages that use MethodSignature
org.apache.hivemind.methodmatch   
org.apache.hivemind.service Definitions of services provided by the hivemind module. 
org.apache.hivemind.service.impl Implementations of services provided by the hivemind module. 
 

Uses of MethodSignature in org.apache.hivemind.methodmatch
 

Methods in org.apache.hivemind.methodmatch with parameters of type MethodSignature
 boolean ParameterFilter.matchMethod(MethodSignature sig)
           
 boolean ParameterCountFilter.matchMethod(MethodSignature method)
           
 boolean NameSuffixFilter.matchMethod(MethodSignature sig)
           
 boolean NamePrefixFilter.matchMethod(MethodSignature sig)
           
 java.lang.Object MethodMatcher.get(MethodSignature sig)
          Returns a pattern value prevoiusly stored via MethodMatcher.put(String, Object).
abstract  boolean MethodFilter.matchMethod(MethodSignature signature)
          Analyzes the method (its name, its parameters, etc.) and returns true if the method matches the filter defined by a subclass.
 boolean MatchAllFilter.matchMethod(MethodSignature sig)
          Returns true, always.
 boolean InfixNameFilter.matchMethod(MethodSignature sig)
           
 boolean ExactNameFilter.matchMethod(MethodSignature sig)
           
 boolean CompositeFilter.matchMethod(MethodSignature sig)
           
 

Uses of MethodSignature in org.apache.hivemind.service
 

Methods in org.apache.hivemind.service with parameters of type MethodSignature
 MethodFab ClassFab.addMethod(int modifiers, MethodSignature signature, java.lang.String body)
          Adds a method.
 MethodFab ClassFab.getMethodFab(MethodSignature signature)
          Returns a previous defined method so that it can be further enhanced (perhaps by adding additional catches, etc.).
 

Uses of MethodSignature in org.apache.hivemind.service.impl
 

Methods in org.apache.hivemind.service.impl with parameters of type MethodSignature
protected  void LoggingInterceptorFactory.addServiceMethodImplementation(ClassFab classFab, MethodSignature sig)
           
 MethodFab ClassFabImpl.addMethod(int modifiers, MethodSignature ms, java.lang.String body)
           
 MethodFab ClassFabImpl.getMethodFab(MethodSignature ms)
           
protected  void AbstractServiceInterceptorFactory.addServiceMethodImplementation(ClassFab classFab, MethodSignature sig)
          Invoked by AbstractServiceInterceptorFactory.addServiceMethods(InterceptorStack, ClassFab, List) for each method in the service interface to allow the factory to construct the corresponding method in the interceptor.