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