Used to select methods based on the method name. If the name ends with * then it will match any method name that starts with that name. The comparison is case sensitive.
Example #1:
new MethodNameMatcher("testMethod") would match the following methods.
testMethod()
testMethod(int p1, String p2)
testMethod(int p1, String p2, String p3)
However, it would not match the following method.
TestMethod(int p1)
Example #2:
new MethodNameMatcher("testM*") would match the following methods.
testMethod()
testMethodA(int p1, String p2)
testMethodB(int p1, String p2, String p3)
However, it would not match the following method.
TestMethod(int p1)
@author Quinton McCombs
@since 09/2013