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/.
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 .
32 /** provides access to sequences of data. With this interface data
33 can only be read from.
35 <p>If the data stored consists only of floating point numbers (double
36 values), the returned instances should also support the service
37 NumericalDataSequence.</p>
39 <p>If the data stored consists only of strings, the returned
40 instances should also support the service
41 TextualDataSequence.</p>
43 interface XDataSource
: ::com
::sun
::star
::uno
::XInterface
44 // : ::com::sun::star::container::XIndexAccess
46 /** returns data sequences.
48 @return a sequence of objects that support at least the
51 <p>If the data stored consist only of floating point numbers
52 (double values), the returned instances should also support
53 the service NumericalDataSequence.</p>
55 <p>If the data stored consist only of strings, the returned
56 instances should also support the service
57 TextualDataSequence.</p>
59 sequence
< XLabeledDataSequence
> getDataSequences
();
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */