474475476477478479480481482483484
{ Iterator it = pointcuts.values().iterator(); while (it.hasNext()) { Pointcut pointcut = (Pointcut) it.next(); if (pointcut.matchesExecution(advisor, con)) { return true; } } }
361362363364365366367368369370371
/* */ { /* 475 */ Iterator it = pointcuts.values().iterator(); /* 476 */ while (it.hasNext()) /* */ { /* 478 */ Pointcut pointcut = (Pointcut)it.next(); /* 479 */ if (pointcut.matchesExecution(advisor, con)) /* */ { /* 481 */ return true; /* */ } /* */ } /* */ }
471472473474475476477478479480481
463464465466467468469470471472473
{ Iterator pointcuts = advisor.getManager().getPointcuts().values().iterator(); while (pointcuts.hasNext()) { Pointcut pointcut = (Pointcut) pointcuts.next(); if (pointcut.matchesExecution(advisor, con)) { return true; } } return false;