* @param xmlSourceObject
* @throws IOException
* @throws XmlException
*/
private static void processTableSingleCells( XSSFSheet sheet, PackagePart singleCells, XmlObject xmlSourceObject ) throws IOException, XmlException {
SingleXmlCellsDocument singleCellsXml = SingleXmlCellsDocument.Factory.parse( singleCells.getInputStream() );
CTSingleXmlCells scs = singleCellsXml.getSingleXmlCells();
assert scs!=null;
for( CTSingleXmlCell sc : scs.getSingleXmlCellArray() ) {
final String ref = sc.getR();