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