1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
11 module com
{ module sun
{ module star
{ module sheet
{
14 /** is used to access named members in a data pilot source
17 @see com::sun::star::sheet::DataPilotSourceMember
19 interface XMembersAccess
: com
::sun
::star
::container
::XNameAccess
22 /** returns names of data pilot members in a locale independent
25 <p> Specifically date values are represented in an ISO 8601
26 YYYY-MM-DD notation and date+time as YYYY-MM-DD HH:MM:SS,
27 whereas the strings returned by
28 com::sun::star::container::XNameAccess::getElementNames() may
29 represent these in a locale dependent or user formatted notation
30 such as MM/DD/YY or DD.MM.YYYY or other. </p>
32 <p> The names returned by this function can NOT be used in calls
33 to com::sun::star::container::XNameAccess::getByName(). However,
34 the order returned in two immediately consecutive calls to
35 getElementNames() and getLocaleIndependentElementNames() maps to
36 the same elements in order. </p>
39 a sequence of all element names in this container.
42 sequence
<string> getLocaleIndependentElementNames
();
49 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */