summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filrset.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file/filrset.hxx')
-rw-r--r--ucb/source/ucp/file/filrset.hxx128
1 files changed, 64 insertions, 64 deletions
diff --git a/ucb/source/ucp/file/filrset.hxx b/ucb/source/ucp/file/filrset.hxx
index 79eddf05cd9a..6c13b33300cb 100644
--- a/ucb/source/ucp/file/filrset.hxx
+++ b/ucb/source/ucp/file/filrset.hxx
@@ -63,32 +63,32 @@ class XResultSet_impl : public Notifier,
virtual ~XResultSet_impl();
- virtual ContentEventNotifier* cDEL( void )
+ virtual ContentEventNotifier* cDEL( void ) SAL_OVERRIDE
{
return 0;
}
- virtual ContentEventNotifier* cEXC( const OUString& )
+ virtual ContentEventNotifier* cEXC( const OUString& ) SAL_OVERRIDE
{
return 0;
}
- virtual ContentEventNotifier* cCEL( void )
+ virtual ContentEventNotifier* cCEL( void ) SAL_OVERRIDE
{
return 0;
}
- virtual PropertySetInfoChangeNotifier* cPSL( void )
+ virtual PropertySetInfoChangeNotifier* cPSL( void ) SAL_OVERRIDE
{
return 0;
}
- virtual PropertyChangeNotifier* cPCL( void )
+ virtual PropertyChangeNotifier* cPCL( void ) SAL_OVERRIDE
{
return 0;
}
- virtual OUString getKey( void )
+ virtual OUString getKey( void ) SAL_OVERRIDE
{
return m_aBaseDirectory;
}
@@ -100,22 +100,22 @@ class XResultSet_impl : public Notifier,
virtual void SAL_CALL
disposing(
const com::sun::star::lang::EventObject& Source )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XComponent
virtual void SAL_CALL
dispose(
void )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL
addEventListener(
const com::sun::star::uno::Reference< com::sun::star::lang::XEventListener >& xListener )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL
removeEventListener( const com::sun::star::uno::Reference< com::sun::star::lang::XEventListener >& aListener )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XRow
@@ -123,7 +123,7 @@ class XResultSet_impl : public Notifier,
wasNull(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception )
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{
if( 0<= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
m_nWasNull = m_aItems[m_nRow]->wasNull();
@@ -136,7 +136,7 @@ class XResultSet_impl : public Notifier,
getString(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getString( columnIndex );
@@ -148,7 +148,7 @@ class XResultSet_impl : public Notifier,
getBoolean(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getBoolean( columnIndex );
@@ -160,7 +160,7 @@ class XResultSet_impl : public Notifier,
getByte(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getByte( columnIndex );
@@ -173,7 +173,7 @@ class XResultSet_impl : public Notifier,
sal_Int32 columnIndex )
throw(
com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getShort( columnIndex );
@@ -185,7 +185,7 @@ class XResultSet_impl : public Notifier,
getInt(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception )
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getInt( columnIndex );
@@ -197,7 +197,7 @@ class XResultSet_impl : public Notifier,
getLong(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getLong( columnIndex );
@@ -209,7 +209,7 @@ class XResultSet_impl : public Notifier,
getFloat(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception )
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getFloat( columnIndex );
@@ -221,7 +221,7 @@ class XResultSet_impl : public Notifier,
getDouble(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception )
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getDouble( columnIndex );
@@ -233,7 +233,7 @@ class XResultSet_impl : public Notifier,
getBytes(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception )
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getBytes( columnIndex );
@@ -245,7 +245,7 @@ class XResultSet_impl : public Notifier,
getDate(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getDate( columnIndex );
@@ -257,7 +257,7 @@ class XResultSet_impl : public Notifier,
getTime(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getTime( columnIndex );
@@ -269,7 +269,7 @@ class XResultSet_impl : public Notifier,
getTimestamp(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getTimestamp( columnIndex );
@@ -281,7 +281,7 @@ class XResultSet_impl : public Notifier,
getBinaryStream(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getBinaryStream( columnIndex );
@@ -293,7 +293,7 @@ class XResultSet_impl : public Notifier,
getCharacterStream(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getCharacterStream( columnIndex );
@@ -306,7 +306,7 @@ class XResultSet_impl : public Notifier,
sal_Int32 columnIndex,
const com::sun::star::uno::Reference< com::sun::star::container::XNameAccess >& typeMap )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getObject( columnIndex,typeMap );
@@ -318,7 +318,7 @@ class XResultSet_impl : public Notifier,
getRef(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getRef( columnIndex );
@@ -330,7 +330,7 @@ class XResultSet_impl : public Notifier,
getBlob(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getBlob( columnIndex );
@@ -342,7 +342,7 @@ class XResultSet_impl : public Notifier,
getClob(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getClob( columnIndex );
@@ -354,7 +354,7 @@ class XResultSet_impl : public Notifier,
getArray(
sal_Int32 columnIndex )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception)
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
{
if( 0 <= m_nRow && m_nRow < sal::static_int_cast<sal_Int32>(m_aItems.size()) )
return m_aItems[m_nRow]->getArray( columnIndex );
@@ -369,110 +369,110 @@ class XResultSet_impl : public Notifier,
next(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
isBeforeFirst(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
isAfterLast(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
isFirst(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
isLast(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL
beforeFirst(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL
afterLast(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
first(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
last(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Int32 SAL_CALL
getRow(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
absolute(
sal_Int32 row )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
relative(
sal_Int32 rows )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
previous(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL
refreshRow(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
rowUpdated(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
rowInserted(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL
rowDeleted(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL
getStatement(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XDynamicResultSet
@@ -481,25 +481,25 @@ class XResultSet_impl : public Notifier,
getStaticResultSet(
void )
throw( com::sun::star::ucb::ListenerAlreadySetException,
- com::sun::star::uno::RuntimeException, std::exception );
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL
setListener(
const com::sun::star::uno::Reference<
com::sun::star::ucb::XDynamicResultSetListener >& Listener )
throw( com::sun::star::ucb::ListenerAlreadySetException,
- com::sun::star::uno::RuntimeException, std::exception );
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL
connectToCache( const com::sun::star::uno::Reference< com::sun::star::ucb::XDynamicResultSet > & xCache )
throw( com::sun::star::ucb::ListenerAlreadySetException,
com::sun::star::ucb::AlreadyInitializedException,
com::sun::star::ucb::ServiceNotFoundException,
- com::sun::star::uno::RuntimeException, std::exception );
+ com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual sal_Int16 SAL_CALL
getCapabilities()
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XCloseable
@@ -508,37 +508,37 @@ class XResultSet_impl : public Notifier,
close(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XContentAccess
virtual OUString SAL_CALL
queryContentIdentifierString(
void )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContentIdentifier > SAL_CALL
queryContentIdentifier(
void )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual com::sun::star::uno::Reference< com::sun::star::ucb::XContent > SAL_CALL
queryContent(
void )
- throw( com::sun::star::uno::RuntimeException, std::exception );
+ throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XResultSetMetaDataSupplier
virtual com::sun::star::uno::Reference< com::sun::star::sdbc::XResultSetMetaData > SAL_CALL
getMetaData(
void )
throw( com::sun::star::sdbc::SQLException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XPropertySet
virtual com::sun::star::uno::Reference< com::sun::star::beans::XPropertySetInfo > SAL_CALL
getPropertySetInfo()
- throw( com::sun::star::uno::RuntimeException, std::exception);
+ throw( com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setPropertyValue(
const OUString& aPropertyName,
@@ -547,14 +547,14 @@ class XResultSet_impl : public Notifier,
com::sun::star::beans::PropertyVetoException,
com::sun::star::lang::IllegalArgumentException,
com::sun::star::lang::WrappedTargetException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual com::sun::star::uno::Any SAL_CALL
getPropertyValue(
const OUString& PropertyName )
throw( com::sun::star::beans::UnknownPropertyException,
com::sun::star::lang::WrappedTargetException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL
addPropertyChangeListener(
@@ -562,7 +562,7 @@ class XResultSet_impl : public Notifier,
const com::sun::star::uno::Reference< com::sun::star::beans::XPropertyChangeListener >& xListener )
throw( com::sun::star::beans::UnknownPropertyException,
com::sun::star::lang::WrappedTargetException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL
removePropertyChangeListener(
@@ -570,7 +570,7 @@ class XResultSet_impl : public Notifier,
const com::sun::star::uno::Reference< com::sun::star::beans::XPropertyChangeListener >& aListener )
throw( com::sun::star::beans::UnknownPropertyException,
com::sun::star::lang::WrappedTargetException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL
addVetoableChangeListener(
@@ -578,14 +578,14 @@ class XResultSet_impl : public Notifier,
const com::sun::star::uno::Reference< com::sun::star::beans::XVetoableChangeListener >& aListener )
throw( com::sun::star::beans::UnknownPropertyException,
com::sun::star::lang::WrappedTargetException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL removeVetoableChangeListener(
const OUString& PropertyName,
const com::sun::star::uno::Reference< com::sun::star::beans::XVetoableChangeListener >& aListener )
throw( com::sun::star::beans::UnknownPropertyException,
com::sun::star::lang::WrappedTargetException,
- com::sun::star::uno::RuntimeException, std::exception);
+ com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private: