From b7381965f3fefdffee4424dc9ea69e065584277c Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Tue, 22 May 2007 14:08:51 +0000 Subject: INTEGRATION: CWS chart2mst3 (1.1.2); FILE ADDED 2005/10/11 12:07:56 bm 1.1.2.2: license header change 2005/05/09 09:23:32 bm 1.1.2.1: moved here from namespace css.chart2 --- offapi/com/sun/star/chart2/data/XDataSource.idl | 91 +++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 offapi/com/sun/star/chart2/data/XDataSource.idl (limited to 'offapi') diff --git a/offapi/com/sun/star/chart2/data/XDataSource.idl b/offapi/com/sun/star/chart2/data/XDataSource.idl new file mode 100644 index 000000000000..0b0e12f5b998 --- /dev/null +++ b/offapi/com/sun/star/chart2/data/XDataSource.idl @@ -0,0 +1,91 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XDataSource.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: vg $ $Date: 2007-05-22 15:08:51 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + * + ************************************************************************/ +#ifndef com_sun_star_chart2_data_XDataSource_idl +#define com_sun_star_chart2_data_XDataSource_idl + +#include + +#include + +module com +{ +module sun +{ +module star +{ +module chart2 +{ +module data +{ + + +/** provides access to sequences of data. With this interface data + can only be read from. + +

If the data stored consists only of floating point numbers (double + values), the returned instances should also support the service + NumericalDataSequence.

+ +

If the data stored consists only of strings, the returned + instances should also support the service + TextualDataSequence.

+ */ +interface XDataSource : ::com::sun::star::uno::XInterface +// : ::com::sun::star::container::XIndexAccess +{ + /** returns data sequences. + + @return a sequence of objects that support at least the + service DataSequence. + +

If the data stored consist only of floating point numbers + (double values), the returned instances should also support + the service NumericalDataSequence.

+ +

If the data stored consist only of strings, the returned + instances should also support the service + TextualDataSequence.

+ */ + sequence< XLabeledDataSequence > getDataSequences(); +}; + +} ; // data +} ; // chart2 +} ; // com +} ; // sun +} ; // star + + +#endif -- cgit