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