/**
  * virtual constructor
  * @param string $event
  * @param string $label
  * @access public
  * @return ref object
  * @static
  */
 static function withEventAndLabel($event, $label)
 {
     $obj = new WChooseOptionButton();
     $obj->setEventAndLabel($event, $label);
     return $obj;
 }