ArrayList<String> line = new ArrayList<String>();
for (int col = 0; col < nbCol; col++) {
line.add(new String("line=" + lineNo + " col=" + col));
}
// (a table line can be as simple as a list of string)
tableDesc.appendLine(line);
}
// make a special configuration for a cell
// set the size of the cell (not automatically computed by MS-Word
tableDesc.getCellAt(1, 2)