6061626364656667
return this; } public RowBuilder addCellWithError( String _text ) { this.lastAddedCell = new CellWithError( getRow(), _text ); return this; }
195196197198199200201202203
return; } // Cell with constant if (dataType != null && XMLConstants.CELL_TYPE_ERROR.equals( dataType.getValue() )) new CellWithError( _row, value ); else new CellWithConstant( _row, parseCellValue( dataType, styleIndex, value ) ); }