/**
  * Creates a new structured comment response list.
  * 
  * @param	\wcf\system\comment\manager\ICommentManager	$commentManager
  * @param	\wcf\data\comment\Comment			$comment
  */
 public function __construct(ICommentManager $commentManager, Comment $comment)
 {
     parent::__construct();
     $this->comment = $comment;
     $this->commentManager = $commentManager;
     $this->getConditionBuilder()->add("comment_response.commentID = ?", array($this->comment->commentID));
     $this->sqlLimit = $this->commentManager->getCommentsPerPage();
 }