354355356357358359360361362363364
if (and.getExists() != null) { Iterator iter = and.getExists().iterator(); while (iter.hasNext() == true) { ExistsOperation op = (ExistsOperation) iter.next(); CriteriaMatch cr = generateExistsCriteria(op); if (cr == null) { return null; }
568569570571572573574575576577578
if (or.getExists() != null) { Iterator iter = or.getExists().iterator(); while (iter.hasNext() == true) { ExistsOperation op = (ExistsOperation) iter.next(); CriteriaMatch cr = generateExistsCriteria(op); if (cr == null) { return null; }