/**
  * Declares an association between this object and a ChildTranslationKeyword object.
  *
  * @param  ChildTranslationKeyword $v
  * @return $this|\App\Models\TranslationLanguageKeyword The current object (for fluent API support)
  * @throws PropelException
  */
 public function setTranslationKeyword(ChildTranslationKeyword $v = null)
 {
     if ($v === null) {
         $this->setKeywordId(NULL);
     } else {
         $this->setKeywordId($v->getId());
     }
     $this->aTranslationKeyword = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildTranslationKeyword object, it will not be re-added.
     if ($v !== null) {
         $v->addTranslationLanguageKeyword($this);
     }
     return $this;
 }