merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / frame / XInterceptorInfo.idl
blobcfc162b0551a2d83ab7eacd645756cca72d549b9
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: XInterceptorInfo.idl,v $
10 * $Revision: 1.10 $
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 ************************************************************************/
30 #ifndef __com_sun_star_frame_XInterceptorInfo_idl__
31 #define __com_sun_star_frame_XInterceptorInfo_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include <com/sun/star/uno/XInterface.idl>
35 #endif
37 //=============================================================================
39 module com { module sun { module star { module frame {
41 //=============================================================================
43 /** makes it possible to get information about a registered interceptor and is used by
44 frame interceptor mechanism to perform interception.
46 <p>
47 Frame can call right interceptor directly without calling all of registered ones.
48 Use it as an additional interface to <type>XDispatchProviderInterceptor</type>.
49 If any interceptor in list doesn't support this interface - these mechanism will be broken
50 and normal list of master-slave interceptor objects will be used from top to the bottom.
51 </p>
53 @see XDispatchProviderInterception
54 @see XDispatchProviderInterceptor
56 published interface XInterceptorInfo: com::sun::star::uno::XInterface
58 //-------------------------------------------------------------------------
59 /** returns the URL list for interception.
61 <p>
62 Wildcards inside the URL's are allowed to register the interceptor for
63 URL's too, which can have optional arguments (e.g. "..#.." or "..?..").
64 </p>
66 @return
67 a list of URL's wich are handled by this interceptor
69 sequence< string > getInterceptedURLs();
72 //=============================================================================
74 }; }; }; };
76 #endif