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