155156157158159160161162163164165
{ Iterator it = pointcuts.values().iterator(); while (it.hasNext()) { Pointcut pointcut = (Pointcut) it.next(); if (pointcut.matchesConstruction(advisor, con)) { return true; } } }
117118119120121122123124125126127
/* */ { /* 156 */ Iterator it = pointcuts.values().iterator(); /* 157 */ while (it.hasNext()) /* */ { /* 159 */ Pointcut pointcut = (Pointcut)it.next(); /* 160 */ if (pointcut.matchesConstruction(advisor, con)) /* */ { /* 162 */ return true; /* */ } /* */ } /* */ }
149150151152153154155156157158159
{ Iterator pointcuts = advisor.getManager().getPointcuts().values().iterator(); while (pointcuts.hasNext()) { Pointcut pointcut = (Pointcut) pointcuts.next(); if (pointcut.matchesConstruction(advisor, con)) { return true; } } return false;