textTable.getCell(0,0).setValue(12412);
textTable.getCell(0,1).setValue(4444444);
// to place text in a cell we need the text service of the individual cell.
ITextService textService = textTable.getCell(0,2).getTextService();
IText cellText = textService.getText();
cellText.setText("Hello World!");
// so now that we have seen it in detail, there is no problem in doing
// it the short way.
textTable.getCell(2,2).getTextService().getText().setText("A");
textTable.getCell(3,2).getTextService().getText().setText("Simple");