continue ;
}// if
Row firstRow = array.iterator().next() ;
boolean isHeaderRow = true ;
for(Iterator<Cell> iter = firstRow.iterator(); iter.hasNext() && isHeaderRow; ) {
Cell cell = iter.next() ;
for(Iterator<Paragraph> cellIter = cell.iterator(); cellIter.hasNext() && isHeaderRow; ) {
Paragraph paragraph = cellIter.next() ;
if (paragraph instanceof TextParagraph) {
TextParagraph tp = (TextParagraph) paragraph ;
for(Iterator<TextParagraphElement> tpIter = tp.iterator(); tpIter.hasNext() && isHeaderRow; ) {
TextParagraphElement element = tpIter.next() ;