1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef __com_sun_star_configuration_SetElement_idl__
28 #define __com_sun_star_configuration_SetElement_idl__
30 #ifndef __com_sun_star_configuration_HierarchyElement_idl__
31 #include
<com
/sun
/star
/configuration
/HierarchyElement.idl
>
34 #ifndef __com_sun_star_container_XChild_idl__
35 #include
<com
/sun
/star
/container
/XChild.idl
>
38 #ifndef __com_sun_star_lang_XComponent_idl__
39 #include
<com
/sun
/star
/lang
/XComponent.idl
>
42 #ifndef __com_sun_star_configuration_XTemplateInstance_idl__
43 #include
<com
/sun
/star
/configuration
/XTemplateInstance.idl
>
46 //=============================================================================
48 module com
{ module sun
{ module star
{ module configuration
{
50 //=============================================================================
51 /** provides information about a dynamic element that can be inserted into a
52 homogeneous set of elements within a hierarchy.
54 <p>Provides information about the element.
55 Provides access to its containing set object.
56 Allows controlling the lifetime of the element.
59 <p>Set elements may be added to and removed from the hierarchy at runtime.
60 They bear user-defined names. They may exist independently, outside any
64 <p>New set element instances generally are created through members of
65 <type scope="com::sun::star::lang">XSingleServiceFactory</type> or,
66 if supported, <type scope="com::sun::star::lang">XMultiServiceFactory</type>
67 on an implementation of <type>SetUpdate</type>. Initially, they are not
68 contained in a set object and have no meaningful name.
71 <p>While an instance is not contained in a set object, it is owned by
72 the client and can be disposed by calling
73 <member scope="com::sun::star::lang">XComponent::dispose()</member>. The name
74 of the object can freely be changed in that situation though without
78 <p>When the instance is inserted into a set (this includes replacing an
79 existing element), ownership is transferred to the container.
80 While it is contained in the container, clients must not dispose the
81 object. When inserted, the name of the object is fixed and is used to
82 identify it within the container. An implementation may support
83 <member scope="com::sun::star::container">XNamed::setName()</member> even in
84 this case. If it does, changing the name has the same effect of removing
85 the object (under the old name) and then reinserting it into the same
86 container (using the new name).
89 <p>When an instance is removed from a set (this includes being replaced by
90 a new element), ownership is transferred to the client again. It can then be
91 disposed or reinserted into a container. An instance can only be inserted
92 into a container, if it was obtained from the same hierarchy.
95 <p>When a set element is removed from its set from outside the hierarchy, the
96 container disposes of the object. This occurrence can be detected by registering
97 a <type scope="com::sun::star::lang">XEventListener</type> with the object.
100 <p>If an implementation is part of a <em>read-only</em> view of the hierarchy,
101 changing the name or parent is not supported (the object can't be removed from
102 its container anyway).
105 @see com::sun::star::configuration::SetAccess
106 Parent objects of this service generally implement service SetAccess.
108 @see com::sun::star::configuration::GroupElement
109 A complementary service for elements of a static heterogeneous collection.
111 @see com::sun::star::configuration::AccessRootElement
112 A complementary service for the root element of a hierarchy.
115 published service SetElement
117 /** is the basic service for accessing information about an element in the
120 service HierarchyElement
;
122 /** provides access to the containing set object.
124 <p>In this service, this interface is mandatory</p>
126 <p><member scope="com::sun::star::container">XChild::getParent()</member>
127 returns <NULL/>, if the object is currently not contained in a container.
130 <p>An implementation may also support
131 <member scope="com::sun::star::container">XChild::setParent()</member>.
132 If it does, changing the parent has the effect of first removing the object
133 from its old parent (if any) and then inserting it into the new parent
134 (unless that is <NULL/>) under the same name. The new parent must be part of
135 the same hierarchy as the old one. The name of the object must have been set
139 interface com
::sun
::star
::container
::XChild
;
141 /** allows controlling or observing the lifetime of the object.
143 <p>Clients may dispose of the object using
144 <member scope="com::sun::star::lang">XComponent::dispose()</member>, only if
145 the object is currently not contained in a container (
146 <member scope="com::sun::star::container">XChild::getParent()</member>
150 <p>Clients may register an <type scope="com::sun::star::lang">XEventListener</type>
151 to be notified, if the object is removed from its container by an outside source.
154 interface com
::sun
::star
::lang
::XComponent
;
156 /** provides information about the type of the element.
158 <p>Set elements have a predetermined structure (their <em>type</em>),
159 that is described by and can be generated from a <em>template</em>.
162 <p>If the object was created using interface
163 <type scope="com::sun::star::lang">XSingleServiceFactory</type>
164 on an implementation of <type>SetUpdate</type>, this interface describes the
165 same template as interface <type>XTemplateContainer</type> on that
166 <type>SetUpdate</type>.
168 <p>If the object was created using interface
169 <type scope="com::sun::star::lang">XMultiServiceFactory</type>
170 on an implementation of <type>SetUpdate</type>, this interface describes the
171 template whose name was used as a service identifier for the factory method.
173 <p>Otherwise, the semantics of the information provided about the template depends on the
177 @ see com::sun::star::configuration::XTemplateContainer
179 interface com
::sun
::star
::configuration
::XTemplateInstance
;
182 //=============================================================================