コード例 #1
0
 /**
  * Declares an association between this object and a Kategori object.
  *
  * @param                  Kategori $v
  * @return Barang The current object (for fluent API support)
  * @throws PropelException
  */
 public function setKategori(Kategori $v = null)
 {
     if ($v === null) {
         $this->setIdKategori(NULL);
     } else {
         $this->setIdKategori($v->getId());
     }
     $this->aKategori = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the Kategori object, it will not be re-added.
     if ($v !== null) {
         $v->addBarang($this);
     }
     return $this;
 }