@Override
public void elementStarted( final StartElement _startElement, final Map<QName, ElementListener> _handlers )
{
final Attribute attribute = _startElement.getAttributeByName( XMLConstants.Table.NUMBER_ROWS_REPEATED );
this.numberRowsRepeated = attribute == null ? 1 : Integer.parseInt( attribute.getValue() );
final RowBuilder rowBuilder = this.sheetBuilder.beginRow();
final CellParser cellParser = new CellParser( rowBuilder, this.config );
_handlers.put( XMLConstants.Table.TABLE_CELL, cellParser );
_handlers.put( XMLConstants.Table.COVERED_TABLE_CELL, cellParser );
}