/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef INCLUDED_TEST_TABLE_XTABLECOLUMNS_HXX #define INCLUDED_TEST_TABLE_XTABLECOLUMNS_HXX #include #include #include #include #include namespace apitest { class OOO_DLLPUBLIC_TEST XTableColumns { public: virtual css::uno::Reference init() = 0; void setXSpreadsheet(const css::uno::Reference& r_xSheet) { m_xSheet = r_xSheet; } void testInsertByIndex(); void testInsertByIndexWithNegativeIndex(); // only use with ScTableColumnsObj void testInsertByIndexWithNoColumn(); void testInsertByIndexWithOutOfBoundIndex(); void testRemoveByIndex(); void testRemoveByIndexWithNegativeIndex(); // only use with ScTableColumnsObj void testRemoveByIndexWithNoColumn(); void testRemoveByIndexWithOutOfBoundIndex(); protected: ~XTableColumns() {} private: css::uno::Reference m_xSheet; static OUString getCellText(const css::uno::Reference& r_xCell); }; } // namespace apitest #endif // INCLUDED_TEST_TABLE_XTABLECOLUMNS_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ /option> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-19Fix unoinfo on macOSStephan Bergmann
...after 4b9190fc29aec0f005f08c0269bb9ff081f19fe3 "mac: don't put script files into Contents/MacOS or framework-bin directory" moved it from Contents/MacOS/ to Contents/Resources/ Change-Id: I90da34f73463baa516e81f6d06bd718f08e93af0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109627 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2020-05-06Move all public Java classes to libreoffice.jarSamuel Mehrbrodt
This moves the classes from juh.jar and ridl.jar to libreoffice.jar The goal is to have one single jar (and Java module, will be added later) which developers can include to work with LO. juh.jar and ridl.jar are kept as basically empty jars with libreoffice.jar on its classpath to keep backwards compatibility. This is a continuation of ae855bf48163ff64d94cfc34aff8e37abdb5518d and a preparation to have Java 9 module support. Change-Id: Ifbbfb97f60373d14256e62ae3122913bd17d5bbb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91930 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>