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