Lines Matching refs:xRes
162 XResultSet xRes = (XResultSet)UnoRuntime.queryInterface(XResultSet.class,xRowRes); in showRowSetRowCount() local
163 xRes.last(); in showRowSetRowCount()
199 XResultSet xRes = (XResultSet)UnoRuntime.queryInterface(XResultSet.class,xRowRes); in showRowSetEvents() local
201 xRes.beforeFirst(); in showRowSetEvents()
204 System.out.println("We stand before the first row: " + xRes.isBeforeFirst()); in showRowSetEvents()
207 xRes.next(); in showRowSetEvents()
209 xRes.next(); in showRowSetEvents()
211 xRes.last(); in showRowSetEvents()
213 xRes.next(); in showRowSetEvents()
214 System.out.println("We stand after the last row: " + xRes.isAfterLast()); in showRowSetEvents()
216 xRes.first(); in showRowSetEvents()
218 xRes.previous(); in showRowSetEvents()
219 System.out.println("We stand before the first row: " + xRes.isBeforeFirst()); in showRowSetEvents()
221 xRes.afterLast(); in showRowSetEvents()
222 System.out.println("We stand after the last row: " + xRes.isAfterLast()); in showRowSetEvents()