tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / udkapi / com / sun / star / reflection / ProxyFactory.idl
blobb0f1a9b3062d9beec1740ca3f5c152bf1b9569aa
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
22 module com { module sun { module star { module reflection {
25 /** Service to create proxy objects acting on behalf of a given
26 target object.<br>
27 A proxy delegates calls to a given target object.
28 In addition, it is aggregatable, thus it is possible to
29 intercept calls on the proxy's interfaces.
31 @attention
32 A proxy object is UNO conform, but does NOT provide original target
33 interfaces on queryInterface() calls. This may lead to problems
34 regarding object identity, e.g. when dealing with listener proxies.
36 @deprecated
37 Aggregation will no longer be supported as a high-level concept of UNO.
38 You may still have the option to implement a UNO object consisting of
39 several single objects in your specific programming language, though this
40 depends on your programming language.
41 Thus this service is deprecated, too.
43 published service ProxyFactory : XProxyFactory;
46 }; }; }; };
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */