/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef __com_sun_star_configuration_HierarchyAccess_idl__ #define __com_sun_star_configuration_HierarchyAccess_idl__ #include #include #include #include #include #include #include module com { module sun { module star { module configuration { /** provides access to a hierarchy of descendant elements.

Subnodes are accessed by their name. Values that are direct or indirect descendants of this tree node can be retrieved. Non-value subnodes can be navigated using container interfaces. Other interfaces provide access to information about this node. Changes to values in the subtree can be monitored by event listeners.

Elements of this container that are not simple values are similar containers themselves, thus (recursively) forming a hierarchical tree.

Implementations of this service usually also implement service HierarchyElement, which concerns the complementary role of being accessible as an element of the hierarchy.

*/ published service HierarchyAccess { /** allows access to immediate children of this node.

XNameAccess::getByName() returns an any holding either a simple value or an interface on another HierarchyAccess if the child is not a simple value.

*/ interface com::sun::star::container::XNameAccess; /** allows access to all descendants of this node

XHierarchicalNameAccess::getByHierarchicalName() returns an any holding either a simple value or an interface on another HierarchyAccess if the descendant is not a simple value.

*/ interface com::sun::star::container::XHierarchicalNameAccess; /** allows attaching listeners to this node to monitor changes to immediate child nodes. */ interface com::sun::star::container::XContainer; /** provides support for inexact names.

Exact names can be obtained for simple or hierarchical names for use in XNameAccess, XHierarchicalNameAccess, XPropertySet or any other interfaces that allow access to or manipulation of subnodes selected by name or hierarchical name.

If an inexact name could be matched to either a simple or a hierarchical name, the simple (immediate child) name is preferred.

*/ interface com::sun::star::beans::XExactName; /** provides information about immediate children of this node. [optional]

This interface may be missing, if the hierarchy supports no traits that are described by PropertyAttribute values or if the same information is available by other means, e.g. if the implementation supports XPropertySet::getPropertySetInfo().

If a child of this node is an object that implements XProperty, then this implementation returns the same Property for that child as the child itself.

*/ [optional] interface com::sun::star::beans::XPropertySetInfo; /** provides access to the state of child elements of an implementation. [optional]

This interface may be missing if the hierarchy (or a hierarchy fragment that contains this implementation as element) does not support default values or if the node does not support accessing the default state of individual children.

If elements that are not simple values, but objects themselves, support a default state (as indicated by PropertyAttribute::MAYBEDEFAULT), they should implement XPropertyWithState, in which case the PropertyState applies to all their children and recursively to all descendants.

If an implementation is part of a read-only view of the hierarchy, attempts to change property states will fail.

*/ [optional] interface com::sun::star::beans::XPropertyState; /** provides access to the states of multiple child elements of an implementation. [optional]

This interface may be missing if the hierarchy (or a hierarchy fragment that contains this implementation as element) does not support default values if the node does not support accessing the default state of individual children.

If elements that are not simple values, but objects themselves, support a default state (as indicated by PropertyAttribute::MAYBEDEFAULT), they should implement XPropertyWithState, in which case the PropertyState applies to all their children and recursively to all descendants.

If an implementation is part of a read-only view of the hierarchy, attempts to change property states will fail.

*/ [optional] interface com::sun::star::beans::XMultiPropertyStates; }; }; }; }; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */