_colSpan = 1;
}
_rowIndex = context.getCurrentRow();
IntFlexArray array = context.getIntFlexArray();
int currentCol = context.getCurrentCol();
// find a cell that is not occupied by cells in previous rows.
while (array.getAt(currentCol) > 0) {
currentCol++;
}
// ok, now array.getAt(currentCol) == 0
_colIndex = currentCol;
for (int i = 0; i < _colSpan; i++, currentCol++) {
array.setAt(currentCol, _rowSpan);
}
context.setCurrentCol(currentCol);
}