1b63233d8Sdamjan/**************************************************************
2b63233d8Sdamjan *
3b63233d8Sdamjan * Licensed to the Apache Software Foundation (ASF) under one
4b63233d8Sdamjan * or more contributor license agreements.  See the NOTICE file
5b63233d8Sdamjan * distributed with this work for additional information
6b63233d8Sdamjan * regarding copyright ownership.  The ASF licenses this file
7b63233d8Sdamjan * to you under the Apache License, Version 2.0 (the
8b63233d8Sdamjan * "License"); you may not use this file except in compliance
9b63233d8Sdamjan * with the License.  You may obtain a copy of the License at
10b63233d8Sdamjan *
11b63233d8Sdamjan *   http://www.apache.org/licenses/LICENSE-2.0
12b63233d8Sdamjan *
13b63233d8Sdamjan * Unless required by applicable law or agreed to in writing,
14b63233d8Sdamjan * software distributed under the License is distributed on an
15b63233d8Sdamjan * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16b63233d8Sdamjan * KIND, either express or implied.  See the License for the
17b63233d8Sdamjan * specific language governing permissions and limitations
18b63233d8Sdamjan * under the License.
19b63233d8Sdamjan *
20b63233d8Sdamjan *************************************************************/
21b63233d8Sdamjan
22b63233d8Sdamjan
23b63233d8Sdamjan#ifndef __com_sun_star_container_XNamedEx_idl__
24b63233d8Sdamjan#define __com_sun_star_container_XNamedEx_idl__
25b63233d8Sdamjan
26b63233d8Sdamjan#ifndef __com_sun_star_uno_XInterface_idl__
27b63233d8Sdamjan#include <com/sun/star/uno/XInterface.idl>
28b63233d8Sdamjan#endif
29b63233d8Sdamjan
30*eb9a319aSMatthias Seidel#ifndef __com_sun_star_container_XNamed_idl__
31*eb9a319aSMatthias Seidel#include <com/sun/star/container/XNamed.idl>
32*eb9a319aSMatthias Seidel#endif
33b63233d8Sdamjan
34b63233d8Sdamjan//=============================================================================
35b63233d8Sdamjan
36b63233d8Sdamjanmodule com {  module sun {  module star {  module container {
37b63233d8Sdamjan
38b63233d8Sdamjan//=============================================================================
39b63233d8Sdamjan
40b63233d8Sdamjan/** specifies the display name of the object.
41b63233d8Sdamjan
42b63233d8Sdamjan	<p>The name is generally unique in the container of the object.</p>
43b63233d8Sdamjan */
44b63233d8Sdamjanpublished interface XNamedEx: XNamed
45b63233d8Sdamjan{
46b63233d8Sdamjan	//-------------------------------------------------------------------------
47b63233d8Sdamjan
48b63233d8Sdamjan	/** @returns
49b63233d8Sdamjan		the display name of the object.
50b63233d8Sdamjan	 */
51b63233d8Sdamjan	string getDisplayName();
52b63233d8Sdamjan
53b63233d8Sdamjan	//-------------------------------------------------------------------------
54b63233d8Sdamjan
55b63233d8Sdamjan	/** sets the display name of the object.
56b63233d8Sdamjan	 */
57b63233d8Sdamjan	[oneway] void setDisplayName( [in] string aName );
58b63233d8Sdamjan
59b63233d8Sdamjan};
60b63233d8Sdamjan
61b63233d8Sdamjan//=============================================================================
62b63233d8Sdamjan
63b63233d8Sdamjan}; }; }; };
64b63233d8Sdamjan
65b63233d8Sdamjan#endif
66