/* class Row { ... public List cells; ... */
for (final Row row : rows) {
for (final Cell cell : row.cells) {
final int cellIndex = row.cells.indexOf(cell);
if (cellIndex == 0) {
continue;// the first cell in row is heading cell so start calc from the second
}
... этот indexOf меня убил • но за комент - плюсик в карму, да
(
Read more... )