1077107810791080108110821083108410851086108710881089
{ Iterator iter = criteria.iterator(); while (iter.hasNext() == true) { Pair p = (Pair) iter.next(); CriteriaMatch cr = (CriteriaMatch) p.getFirst(); if (cr.matches(event) == true) { list.add(p.getSecond()); } } }
102103104105106107108109110111112113114
{ Iterator iter = criteria.iterator(); while (iter.hasNext() == true) { Pair p = (Pair) iter.next(); CriteriaMatch cr = (CriteriaMatch) p.getFirst(); if (cr.matches(ev) == true) { context = (JipletContext) p.getSecond(); break; } }