Home
last modified time | relevance | path

Searched refs:xAllTextTables (Results 1 – 4 of 4) sorted by relevance

/AOO42X/main/wizards/com/sun/star/wizards/text/
H A DTextTableHandler.java90 XNameAccess xAllTextTables = xTextTablesSupplier.getTextTables(); in getByName() local
91 if (xAllTextTables.hasByName(_sTableName)) in getByName()
93 Object oTable = xAllTextTables.getByName(_sTableName); in getByName()
108 …XIndexAccess xAllTextTables = UnoRuntime.queryInterface(XIndexAccess.class, xTextTablesSupplier.ge… in getlastTextTable() local
109 int MaxIndex = xAllTextTables.getCount() - 1; in getlastTextTable()
110 Object oTable = xAllTextTables.getByIndex(MaxIndex); in getlastTextTable()
143 …XIndexAccess xAllTextTables = UnoRuntime.queryInterface(XIndexAccess.class, xTextTablesSupplier.ge… in removeAllTextTables() local
144 int TextTableCount = xAllTextTables.getCount(); in removeAllTextTables()
147 removeTextTable(xAllTextTables.getByIndex(i)); in removeAllTextTables()
160 …XIndexAccess xAllTextTables = UnoRuntime.queryInterface(XIndexAccess.class, xTextTablesSupplier.ge… in removeLastTextTable() local
[all …]
H A DViewHandler.java75 …XIndexAccess xAllTextTables = UnoRuntime.queryInterface(XIndexAccess.class, oTextTableHandler.xTex… in selectFirstPage() local
76 …XTextContent xTextTable = UnoRuntime.queryInterface(XTextContent.class, xAllTextTables.getByIndex(… in selectFirstPage()
/AOO42X/main/wizards/com/sun/star/wizards/report/
H A DRecordTable.java56 XNameAccess xAllTextTables = oTextTableHandler.xTextTablesSupplier.getTextTables(); in RecordTable() local
57 …if ((xAllTextTables.hasByName(ReportTextDocument.TBLRECORDSECTION)) || (xAllTextTables.hasByName(R… in RecordTable()
60 if (xAllTextTables.hasByName(ReportTextDocument.COPYOFTBLRECORDSECTION)) in RecordTable()
62 oTable = xAllTextTables.getByName(ReportTextDocument.COPYOFTBLRECORDSECTION); in RecordTable()
66 oTable = xAllTextTables.getByName(ReportTextDocument.TBLRECORDSECTION); in RecordTable()
73 … XIndexAccess xTableIndex = UnoRuntime.queryInterface(XIndexAccess.class, xAllTextTables); in RecordTable()
H A DDBColumn.java214 XNameAccess xAllTextTables = oTextTableHandler.xTextTablesSupplier.getTextTables(); in getTableColumns() local
215 if (xAllTextTables.hasByName(TableName)) in getTableColumns()
217 Object oTextTable = xAllTextTables.getByName(TableName); in getTableColumns()