/**
  * 답글 리스트에서 다음 게시물을 반환한다.
  * @return KBContent
  */
 public function hasNextReply()
 {
     if (!$this->resource_reply) {
         return '';
     }
     $this->row = current($this->resource_reply);
     if ($this->row) {
         next($this->resource_reply);
         $content = new KBContent();
         $content->initWithRow($this->row);
         return $content;
     } else {
         unset($this->resource_reply);
         return '';
     }
 }