/**
  * Method called to associate a BpmnLaneset object to this object
  * through the BpmnLaneset foreign key attribute
  *
  * @param      BpmnLaneset $l BpmnLaneset
  * @return     void
  * @throws     PropelException
  */
 public function addBpmnLaneset(BpmnLaneset $l)
 {
     $this->collBpmnLanesets[] = $l;
     $l->setBpmnProcess($this);
 }