oObj.moveToInsertRow() ;
XRowUpdate rowU = (XRowUpdate)
UnoRuntime.queryInterface(XRowUpdate.class, oObj);
rowU.updateString(1,"open");
rowU.updateInt(2,5);
rowU.updateDouble(5,3.4);
rowU.updateBoolean(10,true);
oObj.insertRow() ;
oObj.moveToCurrentRow();
int rowsAfter = tester.rowCount() ;
result = rowsBefore + 1 == rowsAfter ;