Lines Matching refs:queryInterface

62 …XTextDocument document = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, component);  in saveAsDoc()
71 XStorable store = (XStorable) UnoRuntime.queryInterface(XStorable.class, document); in saveAs()
81 XStorable store = (XStorable) UnoRuntime.queryInterface(XStorable.class, document); in save()
86 XStorable store = (XStorable) UnoRuntime.queryInterface(XStorable.class, document); in saveAndReload()
95 return (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.newDocument("swriter")); in newDocument()
100 …return (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.loadDocumentFromURL(url)… in openDocumentFromURL()
105 return (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(filePath)); in openDocument()
129 XDocumentPropertiesSupplier docPropsSupplier = UnoRuntime.queryInterface( in setDocumentProperty()
149 …XMultiServiceFactory xDocFactory = (XMultiServiceFactory) UnoRuntime.queryInterface(XMultiServiceF… in insertBookmark()
151 …XTextContent xBookmarkAsTextContent = (XTextContent) UnoRuntime.queryInterface(XTextContent.class,… in insertBookmark()
152 XNamed xBookmarkAsNamed = (XNamed) UnoRuntime.queryInterface(XNamed.class, xBookmark); in insertBookmark()
165 XPropertySet xCursorProps = (XPropertySet)UnoRuntime.queryInterface( in insertColumnBreak()
179 XPropertySet xCursorProps = (XPropertySet)UnoRuntime.queryInterface( in insertPageBreak()
194 XModel xmodel = (XModel)UnoRuntime.queryInterface(XModel.class, document); in getPageCount()
197 XPropertySet xps = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, xcont); in getPageCount()
212 …XTextDocument textDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, xCompo… in getDefaultPageStyleProperty()
213 …XStyleFamiliesSupplier xSupplier = (XStyleFamiliesSupplier)UnoRuntime.queryInterface(XStyleFamilie… in getDefaultPageStyleProperty()
214 …XNameAccess xFamilies = (XNameAccess) UnoRuntime.queryInterface (XNameAccess.class, xSupplier.getS… in getDefaultPageStyleProperty()
215 …XNameContainer xFamily = (XNameContainer) UnoRuntime.queryInterface(XNameContainer.class, xFamilie… in getDefaultPageStyleProperty()
216 …XStyle xStyle = (XStyle)UnoRuntime.queryInterface(XStyle.class, xFamily.getByName("Default")); in getDefaultPageStyleProperty()
217 … XPropertySet xStyleProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xStyle); in getDefaultPageStyleProperty()
231 …XTextDocument textDocument = (XTextDocument) UnoRuntime.queryInterface(XTextDocument.class, xCompo… in setDefaultPageStyleProperty()
232 …XStyleFamiliesSupplier xSupplier = (XStyleFamiliesSupplier)UnoRuntime.queryInterface(XStyleFamilie… in setDefaultPageStyleProperty()
233 …XNameAccess xFamilies = (XNameAccess) UnoRuntime.queryInterface (XNameAccess.class, xSupplier.getS… in setDefaultPageStyleProperty()
234 …XNameContainer xFamily = (XNameContainer) UnoRuntime.queryInterface(XNameContainer.class, xFamilie… in setDefaultPageStyleProperty()
235 …XStyle xStyle = (XStyle)UnoRuntime.queryInterface(XStyle.class, xFamily.getByName("Default")); in setDefaultPageStyleProperty()
236 …XPropertySet xStyleProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xStyle); … in setDefaultPageStyleProperty()
241 XStorable xStorable_odt = (XStorable) UnoRuntime.queryInterface(XStorable.class, xTextDocument); in saveTo_Override_reload()
251 return (XTextDocument)UnoRuntime.queryInterface(XTextDocument.class, app.loadDocument(url)); in saveTo_Override_reload()
258 …XComponentLoader componentLoader = (XComponentLoader) UnoRuntime.queryInterface(XComponentLoader.c… in newDocumentFromTemplate()