/**
  * Declares an association between this object and a ChildMenuI18n object.
  *
  * @param                  ChildMenuI18n $v
  * @return                 \Menu\Model\MenuI18nVersion The current object (for fluent API support)
  * @throws PropelException
  */
 public function setMenuI18n(ChildMenuI18n $v = null)
 {
     if ($v === null) {
         $this->setId(NULL);
     } else {
         $this->setId($v->getId());
     }
     $this->aMenuI18n = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildMenuI18n object, it will not be re-added.
     if ($v !== null) {
         $v->addMenuI18nVersion($this);
     }
     return $this;
 }