{
for (Iterator it = overriddenMethods.iterator() ; it.hasNext() ; )
{
MethodInfo info = (MethodInfo)it.next();
Method method = info.getMethod();
PointcutMethodMatch match = binding.getPointcut().matchesExecution(this, method);
if (match != null && match.isMatch())
{
adviceBindings.add(binding);
if (AspectManager.verbose)
{
System.err.println("method matched binding " + binding.getPointcut().getExpr() + " " + method.toString());