370371372373374375376377378379380
if (and.getMatches() != null) { Iterator iter = and.getMatches().iterator(); while (iter.hasNext() == true) { MatchesOperation op = (MatchesOperation) iter.next(); CriteriaMatch cr = generateMatchesCriteria(op); if (cr == null) { return null; }
584585586587588589590591592593594
if (or.getMatches() != null) { Iterator iter = or.getMatches().iterator(); while (iter.hasNext() == true) { MatchesOperation op = (MatchesOperation) iter.next(); CriteriaMatch cr = generateMatchesCriteria(op); if (cr == null) { return null; }