cid#1640468 Dereference after null check
[LibreOffice.git] / offapi / com / sun / star / text / XDefaultNumberingProvider.idl
blob4da6530304cbb95ff0e84e8b8e27d36baab1657f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 module com { module sun { module star { module text {
22 /**
23 provides access to default com::sun::star::text::NumberingRules
24 according to a given locale information.
25 <p></p>
26 @see com::sun::star::text::NumberingRules
27 @see com::sun::star::lang::Locale
28 @version 1.0
30 published interface XDefaultNumberingProvider : com::sun::star::uno::XInterface
32 /**
33 provides access to outline numberings according to
34 a given com::sun::star::lang::Locale.
35 <p>Outline numberings usually consist of levels
36 with different settings. </p>
37 @see com::sun::star::text::NumberingLevel
39 sequence<com::sun::star::container::XIndexAccess>
40 getDefaultOutlineNumberings([in]com::sun::star::lang::Locale aLocale);
41 /**
42 provides access to outline numberings according
43 to a given com::sun::star::lang::Locale.
44 <p>In contrast to outline numberings the continuous
45 numberings consist of
46 level using the equal settings in all numbering levels.</P>
47 @see com::sun::star::text::NumberingLevel
48 @see com::sun::star::lang::Locale
50 sequence<com::sun::star::beans::PropertyValues>
51 getDefaultContinuousNumberingLevels([in]com::sun::star::lang::Locale aLocale);
53 };};};};
57 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */