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