summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sdbcx
diff options
context:
space:
mode:
authorMichael Hönnig <mi@openoffice.org>2001-01-23 09:08:47 +0000
committerMichael Hönnig <mi@openoffice.org>2001-01-23 09:08:47 +0000
commit745f0a395378a64da436aafbaf9ddfa955705da5 (patch)
treee1cc1978e8888ade5383ac662d0cd8593dcf1581 /offapi/com/sun/star/sdbcx
parent38dd41be773a63a996ad788112b09f73a585cee4 (diff)
optional interfaces now marked as [optional] instead of just a prosa description of this fact
Diffstat (limited to 'offapi/com/sun/star/sdbcx')
-rw-r--r--offapi/com/sun/star/sdbcx/Column.idl35
-rw-r--r--offapi/com/sun/star/sdbcx/Container.idl15
-rw-r--r--offapi/com/sun/star/sdbcx/DatabaseDefinition.idl13
-rw-r--r--offapi/com/sun/star/sdbcx/Driver.idl11
-rw-r--r--offapi/com/sun/star/sdbcx/Index.idl9
-rw-r--r--offapi/com/sun/star/sdbcx/Key.idl9
-rw-r--r--offapi/com/sun/star/sdbcx/ResultSet.idl19
-rw-r--r--offapi/com/sun/star/sdbcx/Table.idl26
-rw-r--r--offapi/com/sun/star/sdbcx/TableDescriptor.idl10
-rw-r--r--offapi/com/sun/star/sdbcx/User.idl9
-rw-r--r--offapi/com/sun/star/sdbcx/View.idl9
11 files changed, 77 insertions, 88 deletions
diff --git a/offapi/com/sun/star/sdbcx/Column.idl b/offapi/com/sun/star/sdbcx/Column.idl
index 1ee158c72445..e0a75959d593 100644
--- a/offapi/com/sun/star/sdbcx/Column.idl
+++ b/offapi/com/sun/star/sdbcx/Column.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Column.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,7 +79,7 @@ service Column
// DocMerge from xml: service com::sun::star::sdbcx::Column: interface com::sun::star::sdbcx::XDataDescriptorFactory
/** optional, could be used to copy a database column.
*/
- interface XDataDescriptorFactory;
+ [optional] interface XDataDescriptorFactory;
// DocMerge: empty anyway
interface com::sun::star::beans::XPropertySet;
@@ -140,14 +140,6 @@ service Column
/** indicates that the column contains some kind of time or date stamp
used to track updates.
-
-
-
-
-
-
-
-
@optional
*/
[optional, readonly, property] boolean IsRowVersion;
@@ -156,16 +148,7 @@ service Column
// DocMerge from xml: property com::sun::star::sdbcx::Column::Description
/** keeps a description of the object.
-
-
-
-
-
-
-
-
@optional
- o
*/
[optional, readonly, property] string Description;
@@ -173,16 +156,7 @@ service Column
// DocMerge from xml: property com::sun::star::sdbcx::Column::DefaultValue
/** keeps a default value for a column, is provided as string.
-
-
-
-
-
-
-
-
@optional
- n conta
*/
[optional, readonly, property] string DefaultValue;
@@ -194,6 +168,9 @@ service Column
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:43 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/Container.idl b/offapi/com/sun/star/sdbcx/Container.idl
index 5fb8cb7e30bf..a39421da4f27 100644
--- a/offapi/com/sun/star/sdbcx/Container.idl
+++ b/offapi/com/sun/star/sdbcx/Container.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Container.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -108,24 +108,24 @@ service Container
// DocMerge from xml: service com::sun::star::container::com::sun::star::util::com::sun::star::sdbcx::Container: interface com::sun::star::util::XRefreshable
/** is optional for implementation
*/
- interface com::sun::star::util::XRefreshable;
+ [optional] interface com::sun::star::util::XRefreshable;
// DocMerge from xml: service com::sun::star::container::com::sun::star::util::com::sun::star::sdbcx::Container: interface com::sun::star::container::com::sun::star::util::com::sun::star::sdbcx::XDataDescriptorFactory
/** optional for implementation.
*/
- interface XDataDescriptorFactory;
+ [optional] interface XDataDescriptorFactory;
// DocMerge from xml: service com::sun::star::container::com::sun::star::util::com::sun::star::sdbcx::Container: interface com::sun::star::container::com::sun::star::util::com::sun::star::sdbcx::XAppend
/** optional for implementation, provides the possibility of adding
a new element to the container.
*/
- interface XAppend;
+ [optional] interface XAppend;
// DocMerge from xml: service com::sun::star::container::com::sun::star::util::com::sun::star::sdbcx::Container: interface com::sun::star::container::com::sun::star::util::com::sun::star::sdbcx::XDrop
/** optional for implementation, provides the possibility of dropping
an element from the container.
*/
- interface XDrop;
+ [optional] interface XDrop;
};
//=============================================================================
@@ -134,6 +134,9 @@ service Container
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:43 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/DatabaseDefinition.idl b/offapi/com/sun/star/sdbcx/DatabaseDefinition.idl
index 45192690746c..698dd4d674ce 100644
--- a/offapi/com/sun/star/sdbcx/DatabaseDefinition.idl
+++ b/offapi/com/sun/star/sdbcx/DatabaseDefinition.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: DatabaseDefinition.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -92,17 +92,17 @@ service DatabaseDefinition
// DocMerge from xml: service com::sun::star::sdbcx::DatabaseDefinition: interface com::sun::star::sdbcx::XViewsSupplier
/** The implementation is optional.
*/
- interface XViewsSupplier;
+ [optional] interface XViewsSupplier;
// DocMerge from xml: service com::sun::star::sdbcx::DatabaseDefinition: interface com::sun::star::sdbcx::XUsersSupplier
/** The implementation is optional.
*/
- interface XUsersSupplier;
+ [optional] interface XUsersSupplier;
// DocMerge from xml: service com::sun::star::sdbcx::DatabaseDefinition: interface com::sun::star::sdbcx::XGroupsSupplier
/** The implementation is optional.
*/
- interface XGroupsSupplier;
+ [optional] interface XGroupsSupplier;
};
//=============================================================================
@@ -111,6 +111,9 @@ service DatabaseDefinition
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:43 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/Driver.idl b/offapi/com/sun/star/sdbcx/Driver.idl
index 79a68552108c..4fdf5ba605b2 100644
--- a/offapi/com/sun/star/sdbcx/Driver.idl
+++ b/offapi/com/sun/star/sdbcx/Driver.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Driver.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -100,12 +100,12 @@ service Driver
// DocMerge from xml: service com::sun::star::sdbcx::Driver: interface com::sun::star::sdbcx::XCreateCatalog
/** is optional for implementation.
*/
- interface XCreateCatalog;
+ [optional] interface XCreateCatalog;
// DocMerge from xml: service com::sun::star::sdbcx::Driver: interface com::sun::star::sdbcx::XDropCatalog
/** is optional for implementation.
*/
- interface XDropCatalog;
+ [optional] interface XDropCatalog;
};
//=============================================================================
@@ -114,6 +114,9 @@ service Driver
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:43 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/Index.idl b/offapi/com/sun/star/sdbcx/Index.idl
index 234bcbdf1013..0c08a2e0149e 100644
--- a/offapi/com/sun/star/sdbcx/Index.idl
+++ b/offapi/com/sun/star/sdbcx/Index.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Index.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,7 +87,7 @@ service Index
// DocMerge from xml: service com::sun::star::sdbcx::Index: interface com::sun::star::sdbcx::XDataDescriptorFactory
/** optional, could be used to copy an index.
*/
- interface XDataDescriptorFactory;
+ [optional] interface XDataDescriptorFactory;
// DocMerge from xml: service com::sun::star::sdbcx::Index: interface com::sun::star::sdbcx::XColumnsSupplier
@@ -135,6 +135,9 @@ service Index
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:43 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/Key.idl b/offapi/com/sun/star/sdbcx/Key.idl
index 4757e19619c4..690ebaabcdbb 100644
--- a/offapi/com/sun/star/sdbcx/Key.idl
+++ b/offapi/com/sun/star/sdbcx/Key.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Key.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -80,7 +80,7 @@ service Key
// DocMerge from xml: service com::sun::star::sdbcx::Key: interface com::sun::star::sdbcx::XDataDescriptorFactory
/** optional, could be used to copy an key.
*/
- interface XDataDescriptorFactory;
+ [optional] interface XDataDescriptorFactory;
// DocMerge from xml: service com::sun::star::sdbcx::Key: interface com::sun::star::sdbcx::XColumnsSupplier
@@ -129,6 +129,9 @@ service Key
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:43 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/ResultSet.idl b/offapi/com/sun/star/sdbcx/ResultSet.idl
index a604944cd607..e0b6b4e35c17 100644
--- a/offapi/com/sun/star/sdbcx/ResultSet.idl
+++ b/offapi/com/sun/star/sdbcx/ResultSet.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: ResultSet.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,7 +87,7 @@ service ResultSet
commands.
The implementation is optional.
*/
- interface com::sun::star::util::XCancellable;
+ [optional] interface com::sun::star::util::XCancellable;
// DocMerge from xml: service com::sun::star::sdbcx::ResultSet: interface com::sun::star::sdbcx::XRowLocate
@@ -101,7 +101,7 @@ service ResultSet
/** is the interface for delete more than one row identified by it's bookmark.
The implementation is optional.
*/
- interface XDeleteRows;
+ [optional] interface XDeleteRows;
// DocMerge from xml: property com::sun::star::sdbcx::ResultSet::IsBookmarkable
@@ -115,14 +115,6 @@ service ResultSet
This may not work, as the result set may contain automatic generated data
which is used as key information.
-
-
-
-
-
-
-
-
@optional
*/
[optional, readonly, property] boolean CanUpdateInsertedRows;
@@ -134,6 +126,9 @@ service ResultSet
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:44 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/Table.idl b/offapi/com/sun/star/sdbcx/Table.idl
index e5427c6c73fa..fe186d6944a7 100644
--- a/offapi/com/sun/star/sdbcx/Table.idl
+++ b/offapi/com/sun/star/sdbcx/Table.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: Table.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -98,7 +98,7 @@ service Table
// DocMerge from xml: service com::sun::star::sdbcx::Table: interface com::sun::star::sdbcx::XDataDescriptorFactory
/** optional, could be used to copy an index.
*/
- interface XDataDescriptorFactory;
+ [optional] interface XDataDescriptorFactory;
// DocMerge from xml: service com::sun::star::sdbcx::Table: interface com::sun::star::sdbcx::XColumnsSupplier
@@ -110,25 +110,25 @@ service Table
// DocMerge from xml: service com::sun::star::sdbcx::Table: interface com::sun::star::sdbcx::XIndexesSupplier
/** optional, provides the access of the table indexes.
*/
- interface XIndexesSupplier;
+ [optional] interface XIndexesSupplier;
// DocMerge from xml: service com::sun::star::sdbcx::Table: interface com::sun::star::sdbcx::XKeysSupplier
/** optional, provides the access to the table keys.
*/
- interface XKeysSupplier;
+ [optional] interface XKeysSupplier;
// DocMerge from xml: service com::sun::star::sdbcx::Table: interface com::sun::star::sdbcx::XRename
/** optional, allows the renaming of tables.
*/
- interface XRename;
+ [optional] interface XRename;
// DocMerge from xml: service com::sun::star::sdbcx::Table: interface com::sun::star::sdbcx::XAlterTable
/** optional, allows the altering of columns.
*/
- interface XAlterTable;
+ [optional] interface XAlterTable;
// DocMerge: empty anyway
interface com::sun::star::beans::XPropertySet;
@@ -163,16 +163,7 @@ service Table
/** indicates the type of the table like (TABLE,VIEW,SYSTEM TABLE).
Could be empty if not supported by the driver.
-
-
-
-
-
-
-
-
@optional
- t
*/
[optional, readonly, property] string Type;
};
@@ -183,6 +174,9 @@ service Table
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:44 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/TableDescriptor.idl b/offapi/com/sun/star/sdbcx/TableDescriptor.idl
index 0e53e0697d5b..82d4af6dc413 100644
--- a/offapi/com/sun/star/sdbcx/TableDescriptor.idl
+++ b/offapi/com/sun/star/sdbcx/TableDescriptor.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: TableDescriptor.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:34 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -92,12 +92,11 @@ service TableDescriptor
// DocMerge from xml: service com::sun::star::sdbcx::TableDescriptor: interface com::sun::star::sdbcx::XKeysSupplier
/** optional, provides the access to the table keys.
*/
- interface XKeysSupplier;
+ [optional] interface XKeysSupplier;
// DocMerge: empty anyway
service Descriptor;
-
// DocMerge from xml: property com::sun::star::sdbcx::TableDescriptor::CatalogName
/** is the name of the table catalog.
*/
@@ -123,6 +122,9 @@ service TableDescriptor
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:44 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/User.idl b/offapi/com/sun/star/sdbcx/User.idl
index 9b06c0cd8abd..d7a4105d5746 100644
--- a/offapi/com/sun/star/sdbcx/User.idl
+++ b/offapi/com/sun/star/sdbcx/User.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: User.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -84,7 +84,7 @@ service User
/** optional for implementation if the database does not know the concept
of user groups. provides the access to the groups a user belongs.
*/
- interface XGroupsSupplier;
+ [optional] interface XGroupsSupplier;
// DocMerge: empty anyway
interface com::sun::star::beans::XPropertySet;
@@ -102,6 +102,9 @@ service User
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:44 hjs
initial import
diff --git a/offapi/com/sun/star/sdbcx/View.idl b/offapi/com/sun/star/sdbcx/View.idl
index ae4371d67c93..269b04da3ef1 100644
--- a/offapi/com/sun/star/sdbcx/View.idl
+++ b/offapi/com/sun/star/sdbcx/View.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: View.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: mi $ $Date: 2000-11-08 12:43:39 $
+ * last change: $Author: mi $ $Date: 2001-01-23 10:08:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -86,7 +86,7 @@ service View
// DocMerge from xml: service com::sun::star::sdbcx::View: interface com::sun::star::sdbcx::XRename
/** is optional for implementation.
*/
- interface XRename;
+ [optional] interface XRename;
// DocMerge: empty anyway
interface com::sun::star::beans::XPropertySet;
@@ -130,6 +130,9 @@ service View
/*===========================================================================
$Log: not supported by cvs2svn $
+ Revision 1.3 2000/11/08 12:43:39 mi
+ moved from api
+
Revision 1.1.1.1 2000/09/18 23:35:44 hjs
initial import