INTEGRATION: CWS dba22b (1.9.232); FILE MERGED

2006/12/12 09:54:08 fs 1.9.232.1: removed useless 'DocMerge from ...' comments which disturb grepping for identifiers
This commit is contained in:
Vladimir Glazounov 2007-01-15 13:14:41 +00:00
parent f8e5d67e7d
commit 8fba8f79c1
4 changed files with 8 additions and 32 deletions

View file

@ -4,9 +4,9 @@
*
* $RCSfile: Column.idl,v $
*
* $Revision: 1.9 $
* $Revision: 1.10 $
*
* last change: $Author: rt $ $Date: 2005-09-08 03:56:58 $
* last change: $Author: vg $ $Date: 2007-01-15 14:13:43 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -44,13 +44,11 @@
published interface XDataDescriptorFactory;
// DocMerge from xml: service com::sun::star::sdbcx::Column
/** describes the common properties of a database column.
*/
published 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.
*/
[optional] interface XDataDescriptorFactory;
@ -59,13 +57,11 @@ published service Column
interface com::sun::star::beans::XPropertySet;
// DocMerge from xml: property com::sun::star::sdbcx::Column::Name
/** is the name of the column.
*/
[readonly, property] string Name;
// DocMerge from xml: property com::sun::star::sdbcx::Column::Type
/** is the
<type scope="com::sun::star::sdbc">DataType</type>
of the column.
@ -73,7 +69,6 @@ published service Column
[readonly, property] long Type;
// DocMerge from xml: property com::sun::star::sdbcx::Column::TypeName
/** is the type name used by the database. If the column type is
a user-defined type, then a fully-qualified type name is returned.
<b>
@ -84,53 +79,45 @@ published service Column
[readonly, property] string TypeName;
// DocMerge from xml: property com::sun::star::sdbcx::Column::Precision
/** gets a column's number of decimal digits.
*/
[readonly, property] long Precision;
// DocMerge from xml: property com::sun::star::sdbcx::Column::Scale
/** gets a column's number of digits to right of the decimal point.
*/
[readonly, property] long Scale;
// DocMerge from xml: property com::sun::star::sdbcx::Column::IsNullable
/** indicates the nullability of values in the designated column.
@see com::sun::star::sdbc::ColumnValue
*/
[readonly, property] long IsNullable;
// DocMerge from xml: property com::sun::star::sdbcx::Column::IsAutoIncrement
/** indicates whether the column is automatically numbered, thus read-only.
@see com::sun::star::sdbc::ColumnValue
*/
[readonly, property] boolean IsAutoIncrement;
// DocMerge from xml: property com::sun::star::sdbcx::Column::IsCurrency
/** indicates whether the column is a cash value.
*/
[readonly, property] boolean IsCurrency;
// DocMerge from xml: property com::sun::star::sdbcx::Column::IsRowVersion
/** indicates that the column contains some kind of time or date stamp
used to track updates.
*/
[optional, readonly, property] boolean IsRowVersion;
// DocMerge from xml: property com::sun::star::sdbcx::Column::Description
/** keeps a description of the object.
*/
[optional, readonly, property] string Description;
// DocMerge from xml: property com::sun::star::sdbcx::Column::DefaultValue
/** keeps a default value for a column, is provided as string.
*/
[optional, readonly, property] string DefaultValue;

View file

@ -4,9 +4,9 @@
*
* $RCSfile: Container.idl,v $
*
* $Revision: 1.9 $
* $Revision: 1.10 $
*
* last change: $Author: rt $ $Date: 2005-09-08 03:57:43 $
* last change: $Author: vg $ $Date: 2007-01-15 14:14:16 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -52,7 +52,6 @@
published interface XDrop;
// DocMerge from xml: service com::sun::star::container::com::sun::star::util::com::sun::star::sdbcx::Container
/** describes every container which is used for data definition. Each
container must support access to its elements by the element's name or
by the element's position.
@ -82,23 +81,19 @@ published service Container
interface com::sun::star::container::XEnumerationAccess;
// 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. Used to reflect changes.
*/
[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. Allows to create descriptor elements which then could be used to append new elements.
*/
[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.
*/
[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.
*/

View file

@ -4,9 +4,9 @@
*
* $RCSfile: DatabaseDefinition.idl,v $
*
* $Revision: 1.9 $
* $Revision: 1.10 $
*
* last change: $Author: rt $ $Date: 2005-09-08 03:57:58 $
* last change: $Author: vg $ $Date: 2007-01-15 14:14:29 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -43,7 +43,6 @@
published interface XGroupsSupplier;
// DocMerge from xml: service com::sun::star::sdbcx::DatabaseDefinition
/** could be used as an extension for performing data definition tasks on
databases, and to control the access rights on database objects.
@ -67,17 +66,14 @@ published service DatabaseDefinition
// gives access to the tables.
interface XTablesSupplier;
// DocMerge from xml: service com::sun::star::sdbcx::DatabaseDefinition: interface com::sun::star::sdbcx::XViewsSupplier
/** The implementation is optional.
*/
[optional] interface XViewsSupplier;
// DocMerge from xml: service com::sun::star::sdbcx::DatabaseDefinition: interface com::sun::star::sdbcx::XUsersSupplier
/** The implementation is optional.
*/
[optional] interface XUsersSupplier;
// DocMerge from xml: service com::sun::star::sdbcx::DatabaseDefinition: interface com::sun::star::sdbcx::XGroupsSupplier
/** The implementation is optional.
*/
[optional] interface XGroupsSupplier;

View file

@ -4,9 +4,9 @@
*
* $RCSfile: Descriptor.idl,v $
*
* $Revision: 1.9 $
* $Revision: 1.10 $
*
* last change: $Author: rt $ $Date: 2005-09-08 03:58:14 $
* last change: $Author: vg $ $Date: 2007-01-15 14:14:41 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@ -42,7 +42,6 @@
module com { module sun { module star { module sdbcx {
// DocMerge from xml: service com::sun::star::sdbcx::Descriptor
/** is used to create a new object within a database.
<p>
@ -62,7 +61,6 @@ published service Descriptor
interface com::sun::star::beans::XPropertySet;
// DocMerge from xml: property com::sun::star::sdbcx::Descriptor::Name
/** is the name for the object to create.
*/
[property] string Name;