List<UIComponent> a4jSupportComponents = customRowRenderingInfo.getA4jSupportComponentsForThisRow(customRows);
for (UIComponent a4jSupportComponent : a4jSupportComponents) {
process(context, a4jSupportComponent, processAction);
}
for (int i = 0, count = columnsForProcessing.size(); i < count; i++) {
CustomCellRenderingInfo customCellRenderingInfo = customRowRenderingInfo.getCustomCellRenderingInfo(i);
if (customCellRenderingInfo == null || (!(customCellRenderingInfo instanceof CustomContentCellRenderingInfo)))
continue;
Cell customCell = ((CustomContentCellRenderingInfo) customCellRenderingInfo).findTableCell(customRows);
if (customCell != null)
process(context, customCell, processAction);