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