tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / configuration / PropertyHierarchy.idl
blobbbef3f09c9234d1e3c23cb5b297bba589e789581
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 .
21 module com { module sun { module star { module configuration {
23 /** provides access to and information about properties and subproperties
24 of an implementation.
26 <p>Properties in a property set may be full-fledged objects that have
27 properties themselves (and so on recursively), thereby forming a hierarchy
28 of properties. This service describes such a hierarchy, and allows
29 direct access even to subproperties.
30 </p>
32 @see com::sun::star::beans::XProperty
33 Properties of an implementation that are objects themselves will often
34 implement com::sun::star::beans::XProperty to allow
35 direct access to information about the object.
36 If such objects have properties of their own, they should fully implement
37 PropertyHierarchy again.
39 published service PropertyHierarchy
41 /** provides access to and information about the immediate properties of an implementation.
43 interface com::sun::star::beans::XPropertySet;
45 /** provides access to and information about the immediate properties
46 of an implementation.
48 <p>This interface allows retrieving or setting multiple properties at once.
49 Accesses are guaranteed to occur as single atomic operations even if
50 multiple threads are accessing the object simultaneously.
51 </p>
53 interface com::sun::star::beans::XMultiPropertySet;
55 /** provides access to and information about the whole hierarchy
56 of properties and subproperties of an implementation.
58 interface com::sun::star::beans::XHierarchicalPropertySet;
60 /** provides access to and information about the whole hierarchy
61 of properties and subproperties of an implementation.
63 <p>This interface allows retrieving or setting multiple properties at once.
64 Accesses are guaranteed to occur as single atomic operations even if
65 multiple threads are accessing the object simultaneously.
66 </p>
68 interface com::sun::star::beans::XMultiHierarchicalPropertySet;
73 }; }; }; };
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */