/**
  * Set the Label
  *
  * @api
  * @param Label $label Label
  * @return static
  */
 public function setLabel(Label $label)
 {
     $label->checkId();
     $label->setScriptEvents(true);
     $this->label = $label;
     return $this;
 }
示例#2
0
 /**
  * Set the Label showing the Page number
  *
  * @api
  * @param Label $label Page number Label
  * @return static
  */
 public function setLabel(Label $label)
 {
     $label->checkId();
     $this->label = $label;
     return $this;
 }