}
}
private static HSSFWorkbook createWorkbook(UIData table, FacesContext context) {
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet(table.getId());
List<UIColumn> columns = getColumns(table);
int currentRowIndex = table.getRowIndex();
addColumnHeaders(sheet, columns, context);
addColumnValues(sheet, columns, table, context);
table.setRowIndex(currentRowIndex);