Beispiel #1
0
 /**
  * Declares an association between this object and a Mesa object.
  *
  * @param             Mesa $v
  * @return JugadorMesa The current object (for fluent API support)
  * @throws PropelException
  */
 public function setMesa(Mesa $v = null)
 {
     if ($v === null) {
         $this->setMesaId(NULL);
     } else {
         $this->setMesaId($v->getId());
     }
     $this->aMesa = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Mesa object, it will not be re-added.
     if ($v !== null) {
         $v->addJugadorMesa($this);
     }
     return $this;
 }