*/
public void setCellParagraphStyle (XTextTable table, int col, int row, String style)
throws UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException
{
XText xCellText = (XText)(UnoRuntime.queryInterface(XText.class, table.getCellByName(convertToCellName (col, row))));
XTextCursor textCursor = xCellText.createTextCursor();
XParagraphCursor xParaCursor = (XParagraphCursor)(UnoRuntime.queryInterface (XParagraphCursor.class, textCursor));
XPropertySet paraProps = (XPropertySet)(UnoRuntime.queryInterface (XPropertySet.class, xParaCursor));
paraProps.setPropertyValue ("ParaStyleName", style);
}