It seems very simple.Try the following and let me know.
JCoTable table = function.getExportParameterList().getTable("ELIGIBLE_LIST");
for (int i = 0; i < table.getNumRows(); i++)
{
table.setRow(i);
System.out.println(table.getValue(0) + '\t' + table.getValue(1)+..........); // Check & verify how many columns you have in each record and get it displayed accordingly.
}
Thanks
MSR