diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-07 13:24:33 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-11-07 14:00:54 -0600 |
commit | 7b1d2ccee8cf7d9804c037f1e24184625a2c8a51 (patch) | |
tree | 3579d0d20bb0a89a8b6238206200297b0b29c0db /offapi | |
parent | 0a078b50d49fe3fd70e9a5d81e329f625b55c448 (diff) |
split idl with multiple class into one idl per.
Change-Id: I7f6de24d77b8032f1fb0383685379b276daa14d8
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart2/data/DatabaseDataProvider.idl | 38 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl | 28 |
2 files changed, 47 insertions, 19 deletions
diff --git a/offapi/com/sun/star/chart2/data/DatabaseDataProvider.idl b/offapi/com/sun/star/chart2/data/DatabaseDataProvider.idl new file mode 100644 index 000000000000..2a34af29553d --- /dev/null +++ b/offapi/com/sun/star/chart2/data/DatabaseDataProvider.idl @@ -0,0 +1,38 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifndef __com_sun_star_report_DatabaseDataProvider_idl__ +#define __com_sun_star_report_DatabaseDataProvider_idl__ + +#include <com/sun/star/chart2/data/XDatabaseDataProvider.idl> + + + module com { module sun { module star { module chart2 { module data { + + +service DatabaseDataProvider : XDatabaseDataProvider +{ + createWithConnection([in] com::sun::star::sdbc::XConnection connection); +}; + + }; }; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl b/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl index 57a4f41ad082..9e625d9e090e 100644 --- a/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl +++ b/offapi/com/sun/star/chart2/data/XDatabaseDataProvider.idl @@ -1,3 +1,4 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * @@ -15,13 +16,10 @@ * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ - #ifndef __com_sun_star_report_XDatabaseDataProvider_idl__ #define __com_sun_star_report_XDatabaseDataProvider_idl__ -#ifndef __com_sun_star_container_NoSuchElementException_idl__ #include <com/sun/star/container/NoSuchElementException.idl> -#endif #include <com/sun/star/beans/XPropertySet.idl> #include <com/sun/star/beans/UnknownPropertyException.idl> #include <com/sun/star/lang/XInitialization.idl> @@ -32,11 +30,9 @@ #include <com/sun/star/chart2/data/XDataProvider.idl> #include <com/sun/star/chart2/data/XRangeXMLConversion.idl> -//============================================================================= module com { module sun { module star { module chart2 { module data { -//============================================================================= /** identifies a <type>XDataProvider</type> for result sets. @@ -84,7 +80,7 @@ interface XDatabaseDataProvider /**is used for subreports and contains the names of the columns of the subreport which are related to the master fields of the parent report. <p>Entries in this sequence can either denote column names in the sub report, - or paramater names.<br/> + or parameter names.<br/> For instance, you could base the report on the SQL statement <code>SELECT * FROM invoices WHERE cust_ref = :cid</code>, and add <code>cid</code> to the DetailFields property. In this case, the parameter will be filled from @@ -96,7 +92,7 @@ interface XDatabaseDataProvider master field.<br/> If a string in this property denotes both a column name and a parameter name, it is undefined which way it is interpreted, but implementations of the service are required - to either decide for the paramter or the column, and proceed as usual. + to either decide for the parameter or the column, and proceed as usual. </p> <p>The columns specified herein typically represent a part of the primary key fields or their aliases of the detail report.</p> @@ -127,14 +123,14 @@ interface XDatabaseDataProvider <p><member>Command</member> needs to be interpreted depending on the value of this property.</p> - <p>This property is only meaningfull together with the <member>Command</member> + <p>This property is only meaningful together with the <member>Command</member> property, thus either <em>both</em> or <em>none</em> of them are present.</p> @see com::sun::star::sdb::CommandType */ [attribute,bound] long CommandType; - /** specifies an addtional filter to optinally use. + /** specifies an additional filter to optionally use. <p>The Filter string has to form a SQL WHERE-clause, <em>without</em> the WHERE-string itself.</p> @@ -169,7 +165,7 @@ interface XDatabaseDataProvider set raises (com::sun::star::beans::UnknownPropertyException); }; - /** is a additional sort order definition for a rowset. + /** is a additional sort order definition for a row set. */ [attribute,bound] string Order; @@ -196,21 +192,15 @@ interface XDatabaseDataProvider { set raises (com::sun::star::lang::IllegalArgumentException); }; - /** is the name of the datasource to use, this could be a named datasource + /** is the name of the data source to use, this could be a named data source or the URL of a data access component. */ [attribute,bound] string DataSourceName; }; -service DatabaseDataProvider : XDatabaseDataProvider -{ - createWithConnection([in] com::sun::star::sdbc::XConnection connection); -}; -//============================================================================= }; }; }; }; }; -/*============================================================================= - -=============================================================================*/ #endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |