Esempio n. 1
0
 /**
  * Declares an association between this object and a ChildPerformanceStatistic object.
  *
  * @param  ChildPerformanceStatistic $v
  * @return $this|\iuf\junia\model\Startgroup The current object (for fluent API support)
  * @throws PropelException
  */
 public function setPerformanceExecutionStatistic(ChildPerformanceStatistic $v = null)
 {
     if ($v === null) {
         $this->setPerformanceExecutionStatisticId(NULL);
     } else {
         $this->setPerformanceExecutionStatisticId($v->getId());
     }
     $this->aPerformanceExecutionStatistic = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildPerformanceStatistic object, it will not be re-added.
     if ($v !== null) {
         $v->addStartgroupRelatedByPerformanceExecutionStatisticId($this);
     }
     return $this;
 }