1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_form_XDatabaseParameterBroadcaster2_idl__
20 #define __com_sun_star_form_XDatabaseParameterBroadcaster2_idl__
22 #include
<com
/sun
/star
/form
/XDatabaseParameterBroadcaster.idl
>
25 module com
{ module sun
{ module star
{ module form
{
28 /** provides the possibility of receiving an event for configuration of parameters.
30 <p>Note that this interface provides exactly the same functionality as the
31 XDatabaseParameterBroadcaster interface. It exists purely for compatibility
32 with the com::sun::star::script::XEventAttacher::attachSingleEventListener():
33 It expects the methods for adding and removing listeners to follow a certain naming scheme,
34 respective to the name of the listener which is being added/removed.</p>
36 @see XDatabaseParameterBroadcaster
37 @see com::sun::star::script::XEventAttacher
39 interface XDatabaseParameterBroadcaster2
: XDatabaseParameterBroadcaster
41 /** registers an XDatabaseParameterListener
43 <p>This method behaves exactly as the XDatabaseParameterBroadcaster::addParameterListener()
44 method inherited from the base interface.</p>
46 void addDatabaseParameterListener
( [in] com
::sun
::star
::form
::XDatabaseParameterListener aListener
);
49 /** revokes an XDatabaseParameterListener
51 <p>This method behaves exactly as the XDatabaseParameterBroadcaster::removeParameterListener()
52 method inherited from the base interface.</p>
54 void removeDatabaseParameterListener
( [in] com
::sun
::star
::form
::XDatabaseParameterListener aListener
);
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */