/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ module ooo { module vba { /** Base interface for VBA collections. Every VBA collection provides the number of items, an enumeration access of all collection items (e.g. for the "For Each" loop), and a way to access single items, usually via the method "Item". The various VBA collection objects expect a specific number of arguments in the "Item" method, therefore this method is not part of this base interface but has to be specified separately in every derived interface. */ interface XCollectionBase { /** Provides an enumeration of all items in this collection. */ interface ::com::sun::star::container::XEnumerationAccess; /** Provides the name of the default item access method. Usually this method is called "Item". The access method has to be specified and implemented separately by every derived class. */ interface ::com::sun::star::script::XDefaultMethod; /** Returns the number of items contained in this collection. */ [attribute, readonly] long Count; }; }; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /collabora/cd-5.3'>distro/collabora/cd-5.3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Expand)Author
2019-11-01README: Add Weblate badge for core l10nAdolfo Jayme Barrientos
2019-10-28Android: document one SDK version that worksMiklos Vajna
2019-08-26Android: document one NDK version that worksMiklos Vajna
2019-08-15Fix MSVC version in README.mdStephan Bergmann
2019-06-05baseline is CentOS/RHEL 7 (glibc 2.14 or later)Christian Lohmaier
2018-12-06Bump (Linux) GCC baseline to 7.0.0Stephan Bergmann
2018-12-04Bump (Linux) Clang baseline to 5.0.2Stephan Bergmann
2018-11-28Xcode 9.3 reportedly requires at least macOS 10.13.2Stephan Bergmann
2018-11-27Bump minimum macOS run-time version to 10.10Tor Lillqvist
2018-11-23Bump Xcode baseline to 9.3Stephan Bergmann
2018-11-23Bump compiler plugins Clang baseline to 5.0.2Stephan Bergmann
2018-10-01Add loplugin:includeform documentationStephan Bergmann
2018-07-12Say VS2017 here, tooTor Lillqvist
2018-06-07Bump iOS SDK version to the current one, 11.4Tor Lillqvist
2018-04-01iOS, bump versionsjan Iversen
2018-02-11Updated links in readme files (https etc.)Ilmari Lauhakangas
2017-12-30iOS, bump version to 11.2jan Iversen
2017-12-19Bump --enable-compiler-plugins to Clang 3.8.0Stephan Bergmann
2017-12-19Document that Clang 3.4.2 is known to be too oldStephan Bergmann
2017-11-13iOS, update to version 11.1jan Iversen
2017-11-08README.md: markdown use 4 spaces for list indentationKorrawit Pruegsanusak
2017-11-03loplugin:includeform: document the requirementsMike Kaganski
2017-10-27iOS update to 11.0jan Iversen
2017-10-08iOS, update app to swift 4jan Iversen
2017-10-04iOS, updated README.mdjan Iversen
2017-10-03Update OSX SDK checkingNoel Grandin
2017-09-08Document baselinesJan-Marek Glogowski
2016-10-10README.md: Add CII Best Practices badgeAdolfo Jayme Barrientos
2016-01-20drop basebmp entirely nowCaolán McNamara
2015-11-28README: Describe what LibreOffice is aboutDavid Ostrovsky
2015-05-24README.md: Add a pretty Coverity badgeAdolfo Jayme Barrientos
2015-03-31README.md: framework is not a wrapper around sfx2Michael Stahl
2015-03-22README.Code → README.mdAdolfo Jayme Barrientos