1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef com_sun_star_chart2_data_XLabeledDataSequence_idl
24#define com_sun_star_chart2_data_XLabeledDataSequence_idl
25
26#include <com/sun/star/uno/XInterface.idl>
27#include <com/sun/star/chart2/data/XDataSequence.idl>
28// #include <com/sun/star/lang/IllegalArgumentException.idl>
29
30module com
31{
32module sun
33{
34module star
35{
36module chart2
37{
38module data
39{
40
41/** allows acces to a one-dimensional sequence of data.
42
43    <p>The data that is stored in this container may contain different
44    types.</p>
45 */
46interface XLabeledDataSequence : ::com::sun::star::uno::XInterface
47{
48    /** returns an <type>XDataSequence</type> containing the actual
49        data.
50     */
51    XDataSequence getValues();
52
53    /** sets a new <type>XDataSequence</type> containing the actual
54        data.
55     */
56    void setValues( [in] XDataSequence xSequence );
57
58    /** returns an <type>XDataSequence</type> containing the label for
59        the labeled sequence.
60     */
61    XDataSequence getLabel();
62
63    /** sets a new <type>XDataSequence</type> containing the label for
64        the labeled sequence.
65     */
66    void setLabel( [in] XDataSequence xSequence );
67};
68
69} ; // data
70} ; // chart2
71} ; // com
72} ; // sun
73} ; // star
74
75
76#endif
77