/** * Gets all many-to-many associated CheckingAccountLookups as an array of CheckingAccountLookup objects * @param QQClause[] $objOptionalClauses additional optional QQClause objects for this query * @return CheckingAccountLookup[] */ public function GetCheckingAccountLookupArray($objOptionalClauses = null) { if (is_null($this->intId)) { return array(); } try { return CheckingAccountLookup::LoadArrayByPerson($this->intId, $objOptionalClauses); } catch (QCallerException $objExc) { $objExc->IncrementOffset(); throw $objExc; } }