update dev300-m58
[ooovba.git] / forms / source / component / errorbroadcaster.hxx
bloba4d5c91cc9090aa15745bc34a5835721a1c53f4b
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: errorbroadcaster.hxx,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef FORMS_ERRORBROADCASTER_HXX
32 #define FORMS_ERRORBROADCASTER_HXX
34 #include <cppuhelper/implbase1.hxx>
35 #include <com/sun/star/sdb/XSQLErrorBroadcaster.hpp>
36 #include <cppuhelper/interfacecontainer.h>
37 #include <com/sun/star/sdbc/SQLException.hpp>
38 #include <com/sun/star/sdb/SQLErrorEvent.hpp>
40 //.........................................................................
41 namespace frm
43 //.........................................................................
45 //=====================================================================
46 //= OErrorBroadcaster
47 //=====================================================================
48 typedef ::cppu::ImplHelper1 < ::com::sun::star::sdb::XSQLErrorBroadcaster
49 > OErrorBroadcaster_BASE;
51 class OErrorBroadcaster : public OErrorBroadcaster_BASE
53 private:
54 ::cppu::OBroadcastHelper& m_rBHelper;
55 ::cppu::OInterfaceContainerHelper m_aErrorListeners;
57 protected:
58 OErrorBroadcaster( ::cppu::OBroadcastHelper& _rBHelper );
59 virtual ~OErrorBroadcaster( );
61 void SAL_CALL disposing();
63 void SAL_CALL onError( const ::com::sun::star::sdbc::SQLException& _rException, const ::rtl::OUString& _rContextDescription );
64 void SAL_CALL onError( const ::com::sun::star::sdb::SQLErrorEvent& _rException );
66 protected:
67 // XSQLErrorBroadcaster
68 virtual void SAL_CALL addSQLErrorListener( const ::com::sun::star::uno::Reference< ::com::sun::star::sdb::XSQLErrorListener >& _rListener ) throw (::com::sun::star::uno::RuntimeException);
69 virtual void SAL_CALL removeSQLErrorListener( const ::com::sun::star::uno::Reference< ::com::sun::star::sdb::XSQLErrorListener >& _rListener ) throw (::com::sun::star::uno::RuntimeException);
72 //.........................................................................
73 } // namespace frm
74 //.........................................................................
76 #endif // FORMS_ERRORBROADCASTER_HXX