/** * Declares an association between this object and a UtilisateurProfessionnel object. * * @param UtilisateurProfessionnel $v * @return CahierTexteNoticePrivee The current object (for fluent API support) * @throws PropelException */ public function setUtilisateurProfessionnel(UtilisateurProfessionnel $v = null) { if ($v === null) { $this->setIdLogin(NULL); } else { $this->setIdLogin($v->getLogin()); } $this->aUtilisateurProfessionnel = $v; // Add binding for other direction of this n:n relationship. // If this object has already been added to the UtilisateurProfessionnel object, it will not be re-added. if ($v !== null) { $v->addCahierTexteNoticePrivee($this); } return $this; }