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