/** @brief Visit @a AfsMatchText instance. * @param $afs_text [in] visited instance. * @return text value associated to visited instance. */ public function visit_AfsMatchText(AfsMatchText $afs_text) { return $afs_text->get_text(); }
/** @brief Visit @a AfsMatchText instance. * @param $afs_text [in] visited instance. * @return text value associated to visited instance surrounded by * <tt><b> ... </b></tt>. */ public function visit_AfsMatchText(AfsMatchText $afs_text) { return '<b>' . $afs_text->get_text() . '</b>'; }
public function visit_AfsMatchText(AfsMatchText $afs_text) { $this->match_text = $afs_text->get_text(); return '<m>' . $this->match_text . '</m>'; }