summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/sdb/tools
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/sdb/tools')
-rw-r--r--offapi/com/sun/star/sdb/tools/XConnectionTools.idl8
-rw-r--r--offapi/com/sun/star/sdb/tools/XObjectNames.idl8
-rw-r--r--offapi/com/sun/star/sdb/tools/XTableName.idl6
3 files changed, 11 insertions, 11 deletions
diff --git a/offapi/com/sun/star/sdb/tools/XConnectionTools.idl b/offapi/com/sun/star/sdb/tools/XConnectionTools.idl
index 8561c794a8ef..31ab32de2a05 100644
--- a/offapi/com/sun/star/sdb/tools/XConnectionTools.idl
+++ b/offapi/com/sun/star/sdb/tools/XConnectionTools.idl
@@ -40,13 +40,13 @@ interface XObjectNames;
interface XDataSourceMetaData;
/** encapsulates various useful functionality around a
- <type scope="com::sun::star::sdb">Connection</type>
+ com::sun::star::sdb::Connection
<p>Most of the functionality provided here is meaningful only relative to
a given database connection. For instance, for quoting table names, you need
the meta data instance of the connection. Thus, the entry point for obtaining
a XConnectionTools instance is the
- <type scope="com::sun::star::sdb">Connection</type> service.</p>
+ com::sun::star::sdb::Connection service.</p>
<p>Note that nearly all functionality provided by this interface is also
available by other means, it's only provided here for convenience purposes.</p>
@@ -77,9 +77,9 @@ interface XConnectionTools
/** get fields for a result set given by a "command descriptor"
<p>A command descriptor here means:
- <ul><li>a SDB-level connection (<type scope="com.sun.star.sdb">Connection</type></li>
+ <ul><li>a SDB-level connection (com.sun.star.sdb::Connection</li>
<li>a string specifying the name of an object relative to the connection</li>
- <li>a <type scope="com.sun.star.sdb">CommandType</type> value specifying the type
+ <li>a com.sun.star.sdb::CommandType value specifying the type
of the object</type></li>
</ul>
</p>
diff --git a/offapi/com/sun/star/sdb/tools/XObjectNames.idl b/offapi/com/sun/star/sdb/tools/XObjectNames.idl
index 304c2e126163..34777ad324bc 100644
--- a/offapi/com/sun/star/sdb/tools/XObjectNames.idl
+++ b/offapi/com/sun/star/sdb/tools/XObjectNames.idl
@@ -40,14 +40,14 @@ module com { module sun { module star { module sdb { module tools {
unique. Using this interface, you can easily ensure this uniqueness.</p>
<p>All of the functionality present in this interface depends on a connection,
- thus it entry point for obtaining it is a <type scope="com::sun::star::sdb">Connection</type>
+ thus it entry point for obtaining it is a com::sun::star::sdb::Connection
service.</p>
<p>The component itself does not have life-time control mechanisms, i.e. you
cannot explicitly dispose it (<member scope="com::sun::star::lang">XComponent::dispose</member>),
and you cannot be notified when it dies.<br/>
However, if your try to access any of its methods or attributes, after the
- connection which was used to create it was closed, a <type scope="com::sun::star::lang">DisposedException</type>
+ connection which was used to create it was closed, a com::sun::star::lang::DisposedException
will be thrown.</p>
@see XConnectionTools
@@ -71,7 +71,7 @@ interface XObjectNames
you are actually creating the table respectively query.</p>
@param CommandType
- specifies the <type scope="com::sun::star::sdb">CommandType</type> of the object for which
+ specifies the com::sun::star::sdb::CommandType of the object for which
a unique name is to be generated. Must be either <member scope="com::sun::star::sdb">CommandType::TABLE</member>
or <member scope="com::sun::star::sdb">CommandType::QUERY</member>.
@@ -106,7 +106,7 @@ interface XObjectNames
application driven by user interactions.</p>
@param CommandType
- specifies the <type scope="com::sun::star::sdb">CommandType</type> of the object whose
+ specifies the com::sun::star::sdb::CommandType of the object whose
name should be checked. Must be either <member scope="com::sun::star::sdb">CommandType::TABLE</member>
or <member scope="com::sun::star::sdb">CommandType::QUERY</member>.
diff --git a/offapi/com/sun/star/sdb/tools/XTableName.idl b/offapi/com/sun/star/sdb/tools/XTableName.idl
index 642a7ae13548..5c96f75461e1 100644
--- a/offapi/com/sun/star/sdb/tools/XTableName.idl
+++ b/offapi/com/sun/star/sdb/tools/XTableName.idl
@@ -44,7 +44,7 @@ module com { module sun { module star { module sdb { module tools {
cannot explicitly dispose it (<member scope="com::sun::star::lang">XComponent::dispose</member>),
and you cannot be notified when it dies.<br/>
However, if your try to access any of its methods or attributes, after the
- connection which was used to create it was closed, a <type scope="com::sun::star::lang">DisposedException</type>
+ connection which was used to create it was closed, a com::sun::star::lang::DisposedException
will be thrown.</p>
@see XConnectionTools
@@ -105,11 +105,11 @@ interface XTableName
*/
[attribute, readonly] string NameForSelect;
- /** is the <type scope="com::sun::star::sdb">Table</type> object specified
+ /** is the com::sun::star::sdb::Table object specified
by the current name.
<p>Retrieving this attribute is equivalent to obtaining the tables
- container from the connection (via <type scope="com::sun::star::sdbcx">XTablesSupplier</type>),
+ container from the connection (via com::sun::star::sdbcx::XTablesSupplier),
and calling its <member scope="com::sun::star::container">XNameAccess::getByName</member>
method with the ComposedName.</p>