public void beginTableAppendRow(final Table type, final Integer rows) {
if (Table.GRID.equals(type)) {
final Grid grid;
table = grid = new Grid();
grid.resizeColumns(1);
} else if (Table.FLEX_TABLE.equals(type)) {
table = new FlexTable();
} else if (Table.OBJECT_LIST_TABLE.equals(type)) {