_impl = new FileMaker_Command_FindRequest_Implementation($fm, $layout); } /** * Sets whether this request is an omit request. * * An omit request removes the matching records from the final result set. * * @param boolean $value TRUE if this is an omit request. Otherwise, FALSE. */ function setOmit($value) { $this->_impl->setOmit($value); } /** * Adds a criterion to this find request. * * @param string $fieldname Name of the field being tested. * @param string $testvalue Value of the field to test against. */ function addFindCriterion($fieldname, $testvalue) { $this->_impl->addFindCriterion($fieldname, $testvalue); } /** * Clears all existing criteria from this find request. */ function clearFindCriteria() { $this->_impl->clearFindCriteria(); } }