final Attribute rowIndex = se.getAttributeByName( XMLConstants.Main.ROW_INDEX );
if (rowIndex != null) {
final int ri = Integer.parseInt( rowIndex.getValue() );
final int rc = _sheet.getRowList().size();
for (int i = rc; i != ri - 1; i++)
new RowImpl( _sheet );
}
final RowImpl row = new RowImpl( _sheet );
if (rowIndex != null)
if (row.getRowIndex() != Integer.parseInt( rowIndex.getValue() ) - 1)
throw new SpreadsheetException.LoadError( "Row with index = " + rowIndex.getValue() + " was not found." );
final int rowContext = getContext();
while ((se = find( XMLConstants.Main.CELL, rowContext )) != null)
parseCell( row, se );