/* */ Iterator it;
/* 63 */ synchronized (pointcuts)
/* */ {
/* 65 */ for (it = pointcuts.iterator(); it.hasNext(); )
/* */ {
/* 67 */ Pointcut pointcut = (Pointcut)it.next();
/* */
/* 69 */ if (joinpointMatcher.matches(pointcut, advisor, member))
/* */ {
/* 71 */ if ((AspectManager.verbose) && (logger.isDebugEnabled()))
/* */ {
/* 73 */ logger.debug(member + " matches pointcut: " + pointcut.getExpr());
/* */ }
/* 75 */ return JoinpointClassification.WRAPPED;
/* */ }
/* */ }
/* */ }