1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_reflection_XInterfaceTypeDescription_idl__
24#define __com_sun_star_reflection_XInterfaceTypeDescription_idl__
25
26#ifndef __com_sun_star_reflection_XTypeDescription_idl__
27#include <com/sun/star/reflection/XTypeDescription.idl>
28#endif
29
30#ifndef __com_sun_star_uno_Uik_idl__
31#include <com/sun/star/uno/Uik.idl>
32#endif
33
34#ifndef __com_sun_star_reflection_XInterfaceMemberTypeDescription_idl__
35#include <com/sun/star/reflection/XInterfaceMemberTypeDescription.idl>
36#endif
37
38
39//=============================================================================
40
41 module com {  module sun {  module star {  module reflection {
42
43//=============================================================================
44
45/** Reflects an interface type.
46
47    <p>This type is superseded by <type>XInterfaceTypeDescription2</type>, which
48    supports multiple inheritance.</p>
49
50    @see XInterfaceMemberTypeDescription
51*/
52published interface XInterfaceTypeDescription: com::sun::star::reflection::XTypeDescription
53{
54	/** Returns the base interface or null, if the reflected interface is not
55        inherited from another.
56
57        <p>This method is deprecated, as it only supports single inheritance.
58        See <type>XInterfaceTypeDescription2</type> for a replacement that
59        supports multiple inheritance.</p>
60
61        @return
62                base interface or null
63        @deprecated
64    */
65	com::sun::star::reflection::XTypeDescription getBaseType();
66
67	/** Deprecated.  UIK are not used anymore, a type is uniquely identified by
68        its name.<br>
69        Returns the UIK, i.e. the unique identifier of the interface.
70
71        @return
72                uik of the interface
73        @deprecated
74    */
75	com::sun::star::uno::Uik getUik();
76
77	/** Returns the members of the interfaces, i.e. attributes and methods.
78
79        @returns
80                interface members
81    */
82	sequence<com::sun::star::reflection::XInterfaceMemberTypeDescription> getMembers();
83};
84
85//=============================================================================
86
87}; }; }; };
88
89/*=============================================================================
90
91=============================================================================*/
92#endif
93