LimitFactory limitFactory = null;
if(tableId == null)
limitFactory = new TableLimitFactory(context);
else
limitFactory = new TableLimitFactory(context,tableId);
TableLimit limit = new TableLimit(limitFactory);
limit.setRowAttributes(totalRows, defautPageSize);
return limit;
}