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