Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Package org.apache.hivemind.methodmatch

Class Summary
AbstractMethodTestCase Base class for a number of tests related to MethodMatcher.
CompositeFilter Runs a suite of MethodFilters, returning true only if each filter does.
ExactNameFilter Matches a method if the name is an exact match.
InfixNameFilter Matches a method when the provided string appears anywhere in the method name.
MatchAllFilter Matches all methods, regardless of name.
MethodFilter Used by a MethodMatcher to see if a java.lang.reflect.Method matches a particular (set of) requirements.
MethodMatcher A utility class used for matching a org.apache.hivemind.service.MethodSignature against a method pattern (this is primarily used by interceptor factories).
MethodMatchMessages  
MethodPatternParser Parses a method pattern (consisting of a name pattern, followed by an optional parameters pattern) into a MethodFilter.
MethodSubject Class used by the method filtering tests as a subject for testing; it has some number of methods with different parameters but doesn't actually do anything.
NamePrefixFilter Matches when a provide name is a prefix of the method name.
NameSuffixFilter Used to match a method name against a suffix.
ParameterCountFilter Checks the number of parameters against an expected count.
ParameterFilter Matches a parameter at a particular index.
TestMethodFilters Tests for various MethodFilters as well as MethodPatternParser.
TestMethodMatcher Tests for the MethodMatcher class.
TestMethodPatternParser Tests for MethodPatternParser.