1*b1cdbd2cSJim Jagielski/**************************************************************
2*b1cdbd2cSJim Jagielski *
3*b1cdbd2cSJim Jagielski * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski *
11*b1cdbd2cSJim Jagielski *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski *
13*b1cdbd2cSJim Jagielski * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski * under the License.
19*b1cdbd2cSJim Jagielski *
20*b1cdbd2cSJim Jagielski *************************************************************/
21*b1cdbd2cSJim Jagielski
22*b1cdbd2cSJim Jagielski
23*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_configuration_SimpleSetAccess_idl__
24*b1cdbd2cSJim Jagielski#define __com_sun_star_configuration_SimpleSetAccess_idl__
25*b1cdbd2cSJim Jagielski
26*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_container_XNameAccess_idl__
27*b1cdbd2cSJim Jagielski#include <com/sun/star/container/XNameAccess.idl>
28*b1cdbd2cSJim Jagielski#endif
29*b1cdbd2cSJim Jagielski
30*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_configuration_XTemplateContainer_idl__
31*b1cdbd2cSJim Jagielski#include <com/sun/star/configuration/XTemplateContainer.idl>
32*b1cdbd2cSJim Jagielski#endif
33*b1cdbd2cSJim Jagielski
34*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_util_XStringEscape_idl__
35*b1cdbd2cSJim Jagielski#include <com/sun/star/util/XStringEscape.idl>
36*b1cdbd2cSJim Jagielski#endif
37*b1cdbd2cSJim Jagielski
38*b1cdbd2cSJim Jagielski#ifndef __com_sun_star_container_XContainer_idl__
39*b1cdbd2cSJim Jagielski#include <com/sun/star/container/XContainer.idl>
40*b1cdbd2cSJim Jagielski#endif
41*b1cdbd2cSJim Jagielski
42*b1cdbd2cSJim Jagielski//=============================================================================
43*b1cdbd2cSJim Jagielski
44*b1cdbd2cSJim Jagielskimodule com { module sun { module star { module configuration {
45*b1cdbd2cSJim Jagielski
46*b1cdbd2cSJim Jagielski//=============================================================================
47*b1cdbd2cSJim Jagielski/** provides access to a dynamic, homogeneous, nonhierarchical set of values
48*b1cdbd2cSJim Jagielski or objects.
49*b1cdbd2cSJim Jagielski
50*b1cdbd2cSJim Jagielski <p>Also provides information about the template for elements.
51*b1cdbd2cSJim Jagielski Allows normalizing externally generated names.
52*b1cdbd2cSJim Jagielski </p>
53*b1cdbd2cSJim Jagielski
54*b1cdbd2cSJim Jagielski <p><em>Sets</em> are dynamic containers.</p>
55*b1cdbd2cSJim Jagielski
56*b1cdbd2cSJim Jagielski <p>The number and names of contained elements is not fixed in advance,
57*b1cdbd2cSJim Jagielski but all elements have to be of one predetermined type.
58*b1cdbd2cSJim Jagielski </p>
59*b1cdbd2cSJim Jagielski*/
60*b1cdbd2cSJim Jagielskipublished service SimpleSetAccess
61*b1cdbd2cSJim Jagielski{
62*b1cdbd2cSJim Jagielski/** is the basic service for accessing child and descendent nodes.
63*b1cdbd2cSJim Jagielski
64*b1cdbd2cSJim Jagielski <p>External names from foreign namespaces should be normalized using
65*b1cdbd2cSJim Jagielski <member scope="com::sun::star::util">XStringEscape::escapeString()</member>,
66*b1cdbd2cSJim Jagielski if available, before using them as element names.
67*b1cdbd2cSJim Jagielski </p>
68*b1cdbd2cSJim Jagielski*/
69*b1cdbd2cSJim Jagielski	interface com::sun::star::container::XNameAccess;
70*b1cdbd2cSJim Jagielski
71*b1cdbd2cSJim Jagielski/** provides additional information about the element type. [optional]
72*b1cdbd2cSJim Jagielski
73*b1cdbd2cSJim Jagielski <p>All set elements, if they are not just simple values, but whole trees,
74*b1cdbd2cSJim Jagielski must have a predetermined structure (their <em>type</em>)
75*b1cdbd2cSJim Jagielski that is described by and can be generated from a <em>template</em>.
76*b1cdbd2cSJim Jagielski The semantics of the information provided about the template depends on the
77*b1cdbd2cSJim Jagielski implementation.
78*b1cdbd2cSJim Jagielski </p>
79*b1cdbd2cSJim Jagielski
80*b1cdbd2cSJim Jagielski <p>This interface may be missing, if the implementation can support only
81*b1cdbd2cSJim Jagielski one predefined type or if the elements are of a simple type and
82*b1cdbd2cSJim Jagielski no further information is available.  In the latter case,
83*b1cdbd2cSJim Jagielski <member scope="com::sun::star::container">XElementAccess::getElementType()</member>
84*b1cdbd2cSJim Jagielski provides all the information there is about the element's type.
85*b1cdbd2cSJim Jagielski </p>
86*b1cdbd2cSJim Jagielski*/
87*b1cdbd2cSJim Jagielski	[optional] interface com::sun::star::configuration::XTemplateContainer;
88*b1cdbd2cSJim Jagielski
89*b1cdbd2cSJim Jagielski/** allows normalizing and denormalizing external names. [optional]
90*b1cdbd2cSJim Jagielski
91*b1cdbd2cSJim Jagielski <p>Elements of a <em>set</em> often correspond to external entities,
92*b1cdbd2cSJim Jagielski for example, files, web pages, and people whose names obey different rules and
93*b1cdbd2cSJim Jagielski restrictions than names that are valid in the hierarchical naming scheme.
94*b1cdbd2cSJim Jagielski </p>
95*b1cdbd2cSJim Jagielski
96*b1cdbd2cSJim Jagielski <p>This interface may be missing if there are no naming restrictions,
97*b1cdbd2cSJim Jagielski if the implementation handles any such conversions internally,
98*b1cdbd2cSJim Jagielski or if clients must enforce such restrictions themselves. In the last case,
99*b1cdbd2cSJim Jagielski the naming scheme documentation must fully document any restrictions.
100*b1cdbd2cSJim Jagielski </p>
101*b1cdbd2cSJim Jagielski*/
102*b1cdbd2cSJim Jagielski	[optional] interface com::sun::star::util::XStringEscape;
103*b1cdbd2cSJim Jagielski
104*b1cdbd2cSJim Jagielski/** allows attaching listeners to this node to monitor changes to the set. [optional]
105*b1cdbd2cSJim Jagielski
106*b1cdbd2cSJim Jagielski <p>This interface may be missing if the implementation does not support
107*b1cdbd2cSJim Jagielski notifications.
108*b1cdbd2cSJim Jagielski </p>
109*b1cdbd2cSJim Jagielski*/
110*b1cdbd2cSJim Jagielski	[optional] interface com::sun::star::container::XContainer;
111*b1cdbd2cSJim Jagielski
112*b1cdbd2cSJim Jagielski};
113*b1cdbd2cSJim Jagielski
114*b1cdbd2cSJim Jagielski//=============================================================================
115*b1cdbd2cSJim Jagielski
116*b1cdbd2cSJim Jagielski}; }; }; };
117*b1cdbd2cSJim Jagielski
118*b1cdbd2cSJim Jagielski#endif
119