+#endif
+
+//=============================================================================
+
+ module com { module sun { module star { module sdb {
+
+//=============================================================================
+
/** simplifies the composing of single select statements.
-
+
The interface can be used for composing single SELECT statements without knowing the
structure of the used query.
@@ -58,41 +58,41 @@
@see com::sun::star::sdb::SingleSelectQueryComposer
*/
-interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
-{
- //-------------------------------------------------------------------------
+published interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
+{
+ //-------------------------------------------------------------------------
// FILTER
- //-------------------------------------------------------------------------
-
+ //-------------------------------------------------------------------------
+
/** makes it possible to set a filter condition for the query.
@param filter
the filter to set
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs
- or the statement isn't valid
+ or the statement isn't valid
or the statement isn't parseable.
*/
- void setFilter([in] string filter)
- raises (com::sun::star::sdbc::SQLException);
- //-------------------------------------------------------------------------
+ void setFilter([in] string filter)
+ raises (com::sun::star::sdbc::SQLException);
+ //-------------------------------------------------------------------------
/** appends a new set of filter criteria which is split into levels.
@param filter
- The filter criteria is split into levels. Each level represents the
- OR criterias. Within each level, the filters are provided as an AND criteria
- with the name of the column and the filter condition. The filter condition
+ The filter criteria is split into levels. Each level represents the
+ OR criterias. Within each level, the filters are provided as an AND criteria
+ with the name of the column and the filter condition. The filter condition
is of type string. The operator used, is defined by SQLFilterOperator.
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs.
*/
void setStructuredFilter([in] sequence< sequence > filter)
- raises (com::sun::star::sdbc::SQLException,com::sun::star::lang::IllegalArgumentException);
- //-------------------------------------------------------------------------
-
- /** appends a new filter condition by a
+ raises (com::sun::star::sdbc::SQLException,com::sun::star::lang::IllegalArgumentException);
+ //-------------------------------------------------------------------------
+
+ /** appends a new filter condition by a
DataColumn
- providing the name and the value for the filter.
+ providing the name and the value for the filter.
The value property must be supported by the DataColumn.
@param column
the column which is used to create a filter
@@ -102,72 +102,72 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
E.g. (xx AND bb AND cc) OR newCriteria
@param filterOperator
The operator used, is defined by SQLFilterOperator.
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs.
*/
void appendFilterByColumn([in] com::sun::star::beans::XPropertySet column,[in] boolean andCriteria,[in] long filterOperator)
- raises (com::sun::star::sdbc::SQLException);
+ raises (com::sun::star::sdbc::SQLException);
- //-------------------------------------------------------------------------
+ //-------------------------------------------------------------------------
// GROUP BY
- //-------------------------------------------------------------------------
-
-
+ //-------------------------------------------------------------------------
+
+
/** makes it possibile to set a group for the query.
@param group
the group part to set
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs
- or the statement isn't valid
+ or the statement isn't valid
or the statement isn't parseable..
*/
- void setGroup([in] string group)
- raises (com::sun::star::sdbc::SQLException);
+ void setGroup([in] string group)
+ raises (com::sun::star::sdbc::SQLException);
+
+ //-------------------------------------------------------------------------
- //-------------------------------------------------------------------------
-
/** appends an additional part to the group criteria of the select
statement. The column must be a Column.
@param column
the column which is used to create a group part
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs.
*/
- void appendGroupByColumn([in] com::sun::star::beans::XPropertySet column)
- raises (com::sun::star::sdbc::SQLException);
-
- //-------------------------------------------------------------------------
+ void appendGroupByColumn([in] com::sun::star::beans::XPropertySet column)
+ raises (com::sun::star::sdbc::SQLException);
+
+ //-------------------------------------------------------------------------
// HAVING
- //-------------------------------------------------------------------------
-
+ //-------------------------------------------------------------------------
+
/** makes it possible to set a HAVING filter condition for the query.
@param filter
the filter to set
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs
- or the statement isn't valid
+ or the statement isn't valid
or the statement isn't parseable.
*/
- void setHavingClause([in] string filter)
- raises (com::sun::star::sdbc::SQLException);
+ void setHavingClause([in] string filter)
+ raises (com::sun::star::sdbc::SQLException);
- //-------------------------------------------------------------------------
+ //-------------------------------------------------------------------------
/** appends a new set of HAVING filter criteria which is split into levels.
@param filter
- The HAVING filter criteria is split into levels. Each level represents the
- OR criterias. Within each level, the filters are provided as an AND criteria
- with the name of the column and the filter condition. The filter condition
+ The HAVING filter criteria is split into levels. Each level represents the
+ OR criterias. Within each level, the filters are provided as an AND criteria
+ with the name of the column and the filter condition. The filter condition
is of type string. The operator used, is defined by SQLFilterOperator.
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs.
*/
void setStructuredHavingClause([in] sequence< sequence > filter)
- raises (com::sun::star::sdbc::SQLException);
- //-------------------------------------------------------------------------
-
- /** appends a new HAVING filter condition by a
+ raises (com::sun::star::sdbc::SQLException);
+ //-------------------------------------------------------------------------
+
+ /** appends a new HAVING filter condition by a
DataColumn
providing the name and the value for the filter.
@param column
@@ -178,45 +178,45 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
E.g. (xx AND bb AND cc) OR newCriteria
@param filterOperator
The operator used, is defined by SQLFilterOperator.
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs.
*/
- void appendHavingClauseByColumn([in] com::sun::star::beans::XPropertySet column,[in] boolean andCriteria,[in] long filterOperator)
- raises (com::sun::star::sdbc::SQLException);
+ void appendHavingClauseByColumn([in] com::sun::star::beans::XPropertySet column,[in] boolean andCriteria,[in] long filterOperator)
+ raises (com::sun::star::sdbc::SQLException);
- //-------------------------------------------------------------------------
+ //-------------------------------------------------------------------------
// ORDER BY
- //-------------------------------------------------------------------------
-
+ //-------------------------------------------------------------------------
+
/** makes it possibile to set a sort condition for the query.
@param order
the order part to set
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs
- or the order isn't valid
+ or the order isn't valid
or the statement isn't parseable.
*/
- void setOrder([in] string order)
- raises (com::sun::star::sdbc::SQLException);
+ void setOrder([in] string order)
+ raises (com::sun::star::sdbc::SQLException);
+
+ //-------------------------------------------------------------------------
- //-------------------------------------------------------------------------
-
/** appends an additional part to the sort order criteria of the select
statement. The column must be a Column.
@param column
the column which is used to create a order part
@param ascending
when the order should be ascending, otherwise if descending.
- @throws com::sun::star::sdbc::SQLException
+ @throws com::sun::star::sdbc::SQLException
if a database access error occurs.
*/
- void appendOrderByColumn([in] com::sun::star::beans::XPropertySet column,
- [in] boolean ascending)
- raises (com::sun::star::sdbc::SQLException);
-
- //-------------------------------------------------------------------------
+ void appendOrderByColumn([in] com::sun::star::beans::XPropertySet column,
+ [in] boolean ascending)
+ raises (com::sun::star::sdbc::SQLException);
+
+ //-------------------------------------------------------------------------
// culmulative composing
- //-------------------------------------------------------------------------
+ //-------------------------------------------------------------------------
/** sets a new elementary query for the composer
@@ -261,14 +261,14 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
{
set raises (com::sun::star::sdbc::SQLException);
};
-};
-
-//=============================================================================
-
-}; }; }; };
-
-/*=============================================================================
-
-=============================================================================*/
-#endif
+};
+
+//=============================================================================
+
+}; }; }; };
+
+/*=============================================================================
+
+=============================================================================*/
+#endif
diff --git a/offapi/com/sun/star/sdb/XSubDocument.idl b/offapi/com/sun/star/sdb/XSubDocument.idl
index 92a09e586..2f9e86b10 100644
--- a/offapi/com/sun/star/sdb/XSubDocument.idl
+++ b/offapi/com/sun/star/sdb/XSubDocument.idl
@@ -1,6 +1,6 @@
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -32,7 +32,7 @@
//=============================================================================
-module com { module sun { module star { module sdb {
+module com { module sun { module star { module sdb {
//=============================================================================
@@ -40,7 +40,7 @@ module com { module sun { module star { module sdb {
@since OOo 3.1
*/
-interface XSubDocument
+published interface XSubDocument
{
/** opens the sub document
@@ -95,7 +95,7 @@ interface XSubDocument
//=============================================================================
-}; }; }; };
+}; }; }; };
//=============================================================================
diff --git a/offapi/com/sun/star/sdb/application/XDatabaseDocumentUI.idl b/offapi/com/sun/star/sdb/application/XDatabaseDocumentUI.idl
index 00fff0afb..1a5c5ed03 100644
--- a/offapi/com/sun/star/sdb/application/XDatabaseDocumentUI.idl
+++ b/offapi/com/sun/star/sdb/application/XDatabaseDocumentUI.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -40,7 +40,7 @@
//=============================================================================
-module com { module sun { module star { module sdb { module application {
+module com { module sun { module star { module sdb { module application {
//=============================================================================
@@ -54,7 +54,7 @@ module com { module sun { module star { module sdb { module application {
@since OOo 2.2
*/
-interface XDatabaseDocumentUI
+published interface XDatabaseDocumentUI
{
/** provides access to the data source belong to the database document
*/
@@ -322,7 +322,7 @@ interface XDatabaseDocumentUI
//=============================================================================
-}; }; }; }; };
+}; }; }; }; };
//=============================================================================
diff --git a/offapi/com/sun/star/sdb/tools/XConnectionTools.idl b/offapi/com/sun/star/sdb/tools/XConnectionTools.idl
index 9d7c792eb..ab9e308fc 100644
--- a/offapi/com/sun/star/sdb/tools/XConnectionTools.idl
+++ b/offapi/com/sun/star/sdb/tools/XConnectionTools.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -31,27 +31,27 @@
#ifndef __com_sun_star_uno_XInterface_idl__
#include
#endif
-#ifndef __com_sun_star_sdbc_SQLException_idl__
-#include
-#endif
+#ifndef __com_sun_star_sdbc_SQLException_idl__
+#include
+#endif
-module com { module sun { module star {
+module com { module sun { module star {
module container {
- interface XNameAccess;
+ published interface XNameAccess;
};
module lang {
- interface XComponent;
+ published interface XComponent;
};
};};};
//=============================================================================
-module com { module sun { module star { module sdb {
- interface XSingleSelectQueryComposer;
+module com { module sun { module star { module sdb {
+ published interface XSingleSelectQueryComposer;
module tools {
//=============================================================================
-interface XTableName;
-interface XObjectNames;
-interface XDataSourceMetaData;
+published interface XTableName;
+published interface XObjectNames;
+published interface XDataSourceMetaData;
//-----------------------------------------------------------------------------
/** encapsulates various useful functionality around a
@@ -68,7 +68,7 @@ interface XDataSourceMetaData;
@since OOo 2.0.4
*/
-interface XConnectionTools
+published interface XConnectionTools
{
/** creates an instance supporting the XTableName interface,
which can be used to manipulate table names for various purposes.
@@ -133,7 +133,7 @@ interface XConnectionTools
@param command
the object. This may be a table name, a query name, or an SQL statement, depending on the value
of _nCommandType
- @return
+ @return
the composer filled with command and command type.
*/
::com::sun::star::sdb::XSingleSelectQueryComposer getComposer([in] long commandType,[in] string command);
diff --git a/offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl b/offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl
index 4ceaa0f76..726b7d712 100644
--- a/offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl
+++ b/offapi/com/sun/star/sdb/tools/XDataSourceMetaData.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -36,7 +36,7 @@
module com { module sun { module star { module sdb { module tools {
//=============================================================================
-interface XDataSourceMetaData
+published interface XDataSourceMetaData
{
/** determines whether the data source supports queries in the FROM
part of a SELECT
statement.
diff --git a/offapi/com/sun/star/sdb/tools/XObjectNames.idl b/offapi/com/sun/star/sdb/tools/XObjectNames.idl
index db40a0e67..1925c74f7 100644
--- a/offapi/com/sun/star/sdb/tools/XObjectNames.idl
+++ b/offapi/com/sun/star/sdb/tools/XObjectNames.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -70,7 +70,7 @@ module com { module sun { module star { module sdb { module tools {
@since OOo 2.0.4
*/
-interface XObjectNames
+published interface XObjectNames
{
/** suggests a (unique) table or query name
diff --git a/offapi/com/sun/star/sdb/tools/XTableName.idl b/offapi/com/sun/star/sdb/tools/XTableName.idl
index 758af4fac..dfddb75a9 100644
--- a/offapi/com/sun/star/sdb/tools/XTableName.idl
+++ b/offapi/com/sun/star/sdb/tools/XTableName.idl
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -72,7 +72,7 @@ module com { module sun { module star { module sdb { module tools {
@since OOo 2.0.4
*/
-interface XTableName
+published interface XTableName
{
/** denotes the name of the catalog which the table is a part of
*/
@@ -98,7 +98,7 @@ interface XTableName
@see CompositionType
- @throws com::sun::star::IllegalArgumentException
+ @throws com::sun::star::IllegalArgumentException
if the given Type does not denote a valid CompositionType
*/
string getComposedName( [in] long Type, [in] boolean Quote )
diff --git a/offapi/com/sun/star/ui/XToolPanel.idl b/offapi/com/sun/star/ui/XToolPanel.idl
index fb10ddece..6b485d1b8 100644
--- a/offapi/com/sun/star/ui/XToolPanel.idl
+++ b/offapi/com/sun/star/ui/XToolPanel.idl
@@ -1,6 +1,6 @@
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -32,13 +32,13 @@
//=============================================================================
-module com { module sun { module star { module ui {
+module com { module sun { module star { module ui {
//=============================================================================
/** describes the basic interface to be implemented by a tool panel
*/
-interface XToolPanel
+published interface XToolPanel
{
/** provides access to the tool panel's main window.
diff --git a/offapi/com/sun/star/ui/dialogs/Wizard.idl b/offapi/com/sun/star/ui/dialogs/Wizard.idl
index b3237be3f..d15819a73 100644
--- a/offapi/com/sun/star/ui/dialogs/Wizard.idl
+++ b/offapi/com/sun/star/ui/dialogs/Wizard.idl
@@ -32,15 +32,15 @@
//==================================================================================================================
-module com { module sun { module star { module ui { module dialogs {
+module com { module sun { module star { module ui { module dialogs {
-interface XWizardController;
+published interface XWizardController;
//==================================================================================================================
/** provides a framework for implementing a wizard dialog.
*/
-service Wizard : XWizard
+published service Wizard : XWizard
{
/** creates a wizard with a single execution path
@param PageIds
@@ -68,7 +68,7 @@ service Wizard : XWizard
//==================================================================================================================
-}; }; }; }; };
+}; }; }; }; };
//==================================================================================================================
diff --git a/offapi/com/sun/star/ui/dialogs/XWizard.idl b/offapi/com/sun/star/ui/dialogs/XWizard.idl
index 445f7bbf2..debe91072 100644
--- a/offapi/com/sun/star/ui/dialogs/XWizard.idl
+++ b/offapi/com/sun/star/ui/dialogs/XWizard.idl
@@ -37,7 +37,7 @@ module com { module sun { module star { module ui { module dialogs {
//==================================================================================================================
-interface XWizardPage;
+published interface XWizardPage;
/** is the main interface implemented by the Wizard services.
@@ -79,7 +79,7 @@ interface XWizardPage;
@see XWizardController
@see XWizardPage
*/
-interface XWizard
+published interface XWizard
{
interface XExecutableDialog;
diff --git a/offapi/com/sun/star/ui/dialogs/XWizardController.idl b/offapi/com/sun/star/ui/dialogs/XWizardController.idl
index 52a245422..2ada9c1e7 100644
--- a/offapi/com/sun/star/ui/dialogs/XWizardController.idl
+++ b/offapi/com/sun/star/ui/dialogs/XWizardController.idl
@@ -37,7 +37,7 @@ module com { module sun { module star { module ui { module dialogs {
/** is the interface of a client-provided controller of a custom Wizard.
*/
-interface XWizardController
+published interface XWizardController
{
/** creates a page
@@ -78,7 +78,7 @@ interface XWizardController
//==================================================================================================================
-}; }; }; }; };
+}; }; }; }; };
//==================================================================================================================
diff --git a/offapi/com/sun/star/ui/dialogs/XWizardPage.idl b/offapi/com/sun/star/ui/dialogs/XWizardPage.idl
index 4eef97d00..64b9f807d 100644
--- a/offapi/com/sun/star/ui/dialogs/XWizardPage.idl
+++ b/offapi/com/sun/star/ui/dialogs/XWizardPage.idl
@@ -37,7 +37,7 @@ module com { module sun { module star { module ui { module dialogs {
/** is a single page of a Wizard
*/
-interface XWizardPage : ::com::sun::star::lang::XComponent
+published interface XWizardPage : ::com::sun::star::lang::XComponent
{
/** provides read-only access to the window of the page
*/
@@ -79,7 +79,7 @@ interface XWizardPage : ::com::sun::star::lang::XComponent
//==================================================================================================================
-}; }; }; }; };
+}; }; }; }; };
//==================================================================================================================
diff --git a/offapi/com/sun/star/util/InvalidStateException.idl b/offapi/com/sun/star/util/InvalidStateException.idl
index 58e368bd4..3f4b28dbd 100644
--- a/offapi/com/sun/star/util/InvalidStateException.idl
+++ b/offapi/com/sun/star/util/InvalidStateException.idl
@@ -27,17 +27,17 @@
#ifndef __com_sun_star_util_InvalidStateException_idl__
#define __com_sun_star_util_InvalidStateException_idl__
-#include
+#include
//==================================================================================================================
-module com { module sun { module star { module util {
+module com { module sun { module star { module util {
//==================================================================================================================
/** is thrown when an object's state does not allow to call requested functionality.
*/
-exception InvalidStateException : com::sun::star::uno::Exception
+published exception InvalidStateException : com::sun::star::uno::Exception
{
};
diff --git a/offapi/com/sun/star/util/NotLockedException.idl b/offapi/com/sun/star/util/NotLockedException.idl
index a8865c25b..9819fde69 100755
--- a/offapi/com/sun/star/util/NotLockedException.idl
+++ b/offapi/com/sun/star/util/NotLockedException.idl
@@ -31,13 +31,13 @@
//==================================================================================================================
-module com { module sun { module star { module util {
+module com { module sun { module star { module util {
//==================================================================================================================
/** is raised when attempt is made to unlock a lockable component which actually is not locked.
*/
-exception NotLockedException : ::com::sun::star::util::InvalidStateException
+published exception NotLockedException : ::com::sun::star::util::InvalidStateException
{
};
diff --git a/offapi/com/sun/star/util/XLockable.idl b/offapi/com/sun/star/util/XLockable.idl
index 5616a42c2..0e52cc96c 100755
--- a/offapi/com/sun/star/util/XLockable.idl
+++ b/offapi/com/sun/star/util/XLockable.idl
@@ -31,7 +31,7 @@
//==================================================================================================================
-module com { module sun { module star { module util {
+module com { module sun { module star { module util {
//==================================================================================================================
@@ -41,7 +41,7 @@ module com { module sun { module star { module util {
pairs. As long as there has been one more call to lock
than to unlock
, the
component is considered locked, which is reflected by isLocked returning .
*/
-interface XLockable
+published interface XLockable
{
/** locks the component
@@ -54,7 +54,7 @@ interface XLockable
@throws NotLockedException
if the component is not currently locked.
-
+
@see lock
@see isLocked
*/
--
cgit v1.2.3