001
014
015 package com.liferay.portal.kernel.dao.search;
016
017 import java.util.List;
018
019
022 public class ResultRowSplitterEntry {
023
024 public ResultRowSplitterEntry(String title, List<ResultRow> resultRows) {
025 _title = title;
026 _resultRows = resultRows;
027 }
028
029 public List<ResultRow> getResultRows() {
030 return _resultRows;
031 }
032
033 public String getTitle() {
034 return _title;
035 }
036
037 public void setResultRows(List<ResultRow> resultRows) {
038 _resultRows = resultRows;
039 }
040
041 public void setTitle(String title) {
042 _title = title;
043 }
044
045 private List<ResultRow> _resultRows;
046 private String _title;
047
048 }