Lines Matching refs:xTable
65 …XTextTable xTable = (XTextTable) UnoRuntime.queryInterface(XTextTable.class,xWriterFactory.createI… in testCreateTable() local
66 xTable.initialize(4, 4); in testCreateTable()
67 xText.insertTextContent(xTextCursor, xTable, false); in testCreateTable()
69 insertIntoCell( "A1","test", xTable ); in testCreateTable()
70 insertIntoCell( "C4","123", xTable ); in testCreateTable()
71 insertIntoCell( "D2","fsdf132134", xTable ); in testCreateTable()
72 insertIntoCell( "B3","*^$%^$^$", xTable ); in testCreateTable()
119 public static void insertIntoCell(String sCellName, String sText, XTextTable xTable) { in insertIntoCell() argument
121 XText xCellText = (XText) UnoRuntime.queryInterface(XText.class, xTable.getCellByName(sCellName)); in insertIntoCell()
126 public static String getFromCell(String sCellName, XTextTable xTable) { in getFromCell() argument
128 XText xCellText = (XText) UnoRuntime.queryInterface(XText.class, xTable.getCellByName(sCellName)); in getFromCell()