/* "this" has not yet been added to the children of the parent.
* Therefore, the previous cell is the last child of the parent. */
previousCellIndex = row.getChildCount() - 1;
}
if (previousCellIndex > -1) {
final FObj previous = row.getChildAt(previousCellIndex);
/* Existing children could be markers as well as table-cells. */
if (previous instanceof TableCell) {
return (TableCell) previous;
}
}