summaryrefslogtreecommitdiff
path: root/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/resultsetbase.hxx')
-rw-r--r--xmlhelp/source/cxxhelp/provider/resultsetbase.hxx146
1 files changed, 49 insertions, 97 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx b/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
index fc2cf624fb91..56a591b4b8f8 100644
--- a/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
+++ b/xmlhelp/source/cxxhelp/provider/resultsetbase.hxx
@@ -58,29 +58,24 @@ namespace chelp {
// XInterface
virtual css::uno::Any SAL_CALL
- queryInterface(
- const css::uno::Type& aType )
+ queryInterface( const css::uno::Type& aType )
throw( css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- acquire(
- void )
+ acquire()
throw() override;
virtual void SAL_CALL
- release(
- void )
+ release()
throw() override;
// XComponent
virtual void SAL_CALL
- dispose(
- void )
+ dispose()
throw( css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
- addEventListener(
- const css::uno::Reference< css::lang::XEventListener >& xListener )
+ addEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener )
throw( css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL
@@ -90,8 +85,7 @@ namespace chelp {
// XRow
virtual sal_Bool SAL_CALL
- wasNull(
- void )
+ wasNull()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -103,8 +97,7 @@ namespace chelp {
}
virtual OUString SAL_CALL
- getString(
- sal_Int32 columnIndex )
+ getString( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -115,8 +108,7 @@ namespace chelp {
}
virtual sal_Bool SAL_CALL
- getBoolean(
- sal_Int32 columnIndex )
+ getBoolean( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -127,8 +119,7 @@ namespace chelp {
}
virtual sal_Int8 SAL_CALL
- getByte(
- sal_Int32 columnIndex )
+ getByte( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -139,8 +130,7 @@ namespace chelp {
}
virtual sal_Int16 SAL_CALL
- getShort(
- sal_Int32 columnIndex )
+ getShort( sal_Int32 columnIndex )
throw(
css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
@@ -152,8 +142,7 @@ namespace chelp {
}
virtual sal_Int32 SAL_CALL
- getInt(
- sal_Int32 columnIndex )
+ getInt( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -164,8 +153,7 @@ namespace chelp {
}
virtual sal_Int64 SAL_CALL
- getLong(
- sal_Int32 columnIndex )
+ getLong( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -176,8 +164,7 @@ namespace chelp {
}
virtual float SAL_CALL
- getFloat(
- sal_Int32 columnIndex )
+ getFloat( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -188,8 +175,7 @@ namespace chelp {
}
virtual double SAL_CALL
- getDouble(
- sal_Int32 columnIndex )
+ getDouble( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -200,8 +186,7 @@ namespace chelp {
}
virtual css::uno::Sequence< sal_Int8 > SAL_CALL
- getBytes(
- sal_Int32 columnIndex )
+ getBytes( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception ) override
{
@@ -212,8 +197,7 @@ namespace chelp {
}
virtual css::util::Date SAL_CALL
- getDate(
- sal_Int32 columnIndex )
+ getDate( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -224,8 +208,7 @@ namespace chelp {
}
virtual css::util::Time SAL_CALL
- getTime(
- sal_Int32 columnIndex )
+ getTime( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -236,8 +219,7 @@ namespace chelp {
}
virtual css::util::DateTime SAL_CALL
- getTimestamp(
- sal_Int32 columnIndex )
+ getTimestamp( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -248,8 +230,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::io::XInputStream > SAL_CALL
- getBinaryStream(
- sal_Int32 columnIndex )
+ getBinaryStream( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -260,8 +241,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::io::XInputStream > SAL_CALL
- getCharacterStream(
- sal_Int32 columnIndex )
+ getCharacterStream( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -272,9 +252,8 @@ namespace chelp {
}
virtual css::uno::Any SAL_CALL
- getObject(
- sal_Int32 columnIndex,
- const css::uno::Reference< css::container::XNameAccess >& typeMap )
+ getObject( sal_Int32 columnIndex,
+ const css::uno::Reference< css::container::XNameAccess >& typeMap )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -285,8 +264,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::sdbc::XRef > SAL_CALL
- getRef(
- sal_Int32 columnIndex )
+ getRef( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -297,8 +275,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::sdbc::XBlob > SAL_CALL
- getBlob(
- sal_Int32 columnIndex )
+ getBlob( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -309,8 +286,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::sdbc::XClob > SAL_CALL
- getClob(
- sal_Int32 columnIndex )
+ getClob( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -321,8 +297,7 @@ namespace chelp {
}
virtual css::uno::Reference< css::sdbc::XArray > SAL_CALL
- getArray(
- sal_Int32 columnIndex )
+ getArray( sal_Int32 columnIndex )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override
{
@@ -336,143 +311,120 @@ namespace chelp {
// XResultSet
virtual sal_Bool SAL_CALL
- next(
- void )
+ next()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- isBeforeFirst(
- void )
+ isBeforeFirst()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- isAfterLast(
- void )
+ isAfterLast()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- isFirst(
- void )
+ isFirst()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- isLast(
- void )
+ isLast()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- beforeFirst(
- void )
+ beforeFirst()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- afterLast(
- void )
+ afterLast()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- first(
- void )
+ first()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- last(
- void )
+ last()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL
- getRow(
- void )
+ getRow()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- absolute(
- sal_Int32 row )
+ absolute( sal_Int32 row )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- relative(
- sal_Int32 rows )
+ relative( sal_Int32 rows )
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- previous(
- void )
+ previous()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL
- refreshRow(
- void )
+ refreshRow()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- rowUpdated(
- void )
+ rowUpdated()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- rowInserted(
- void )
+ rowInserted()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL
- rowDeleted(
- void )
+ rowDeleted()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference< css::uno::XInterface > SAL_CALL
- getStatement(
- void )
+ getStatement()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
// XCloseable
virtual void SAL_CALL
- close(
- void )
+ close()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;
// XContentAccess
virtual OUString SAL_CALL
- queryContentIdentifierString(
- void )
+ queryContentIdentifierString()
throw( css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Reference< css::ucb::XContentIdentifier > SAL_CALL
- queryContentIdentifier(
- void )
+ queryContentIdentifier()
throw( css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Reference< css::ucb::XContent > SAL_CALL
- queryContent(
- void )
+ queryContent()
throw( css::uno::RuntimeException, std::exception ) override;
// XResultSetMetaDataSupplier
virtual css::uno::Reference< css::sdbc::XResultSetMetaData > SAL_CALL
- getMetaData(
- void )
+ getMetaData()
throw( css::sdbc::SQLException,
css::uno::RuntimeException, std::exception) override;