function offset($dx, $dy)
 {
     parent::offset($dx, $dy);
     $this->_note_call_box->offset($dx, $dy);
 }
 function offset($dx, $dy)
 {
     $size = count($this->_lines);
     for ($i = 0; $i < $size; $i++) {
         $this->_lines[$i]->offset($dx, $dy);
     }
     GenericInlineBox::offset($dx, $dy);
 }