1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
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.
14 *
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).
20 *
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.
25 *
26 ************************************************************************/
27#ifndef __com_sun_star_reflection_XInterfaceTypeDescription_idl__
28#define __com_sun_star_reflection_XInterfaceTypeDescription_idl__
29
30#ifndef __com_sun_star_reflection_XTypeDescription_idl__
31#include <com/sun/star/reflection/XTypeDescription.idl>
32#endif
33
34#ifndef __com_sun_star_uno_Uik_idl__
35#include <com/sun/star/uno/Uik.idl>
36#endif
37
38#ifndef __com_sun_star_reflection_XInterfaceMemberTypeDescription_idl__
39#include <com/sun/star/reflection/XInterfaceMemberTypeDescription.idl>
40#endif
41
42
43//=============================================================================
44
45 module com {  module sun {  module star {  module reflection {
46
47//=============================================================================
48
49/** Reflects an interface type.
50
51    <p>This type is superseded by <type>XInterfaceTypeDescription2</type>, which
52    supports multiple inheritance.</p>
53
54    @see XInterfaceMemberTypeDescription
55*/
56published interface XInterfaceTypeDescription: com::sun::star::reflection::XTypeDescription
57{
58	/** Returns the base interface or null, if the reflected interface is not
59        inherited from another.
60
61        <p>This method is deprecated, as it only supports single inheritance.
62        See <type>XInterfaceTypeDescription2</type> for a replacement that
63        supports multiple inheritance.</p>
64
65        @return
66                base interface or null
67        @deprecated
68    */
69	com::sun::star::reflection::XTypeDescription getBaseType();
70
71	/** Deprecated.  UIK are not used anymore, a type is uniquely identified by
72        its name.<br>
73        Returns the UIK, i.e. the unique identifier of the interface.
74
75        @return
76                uik of the interface
77        @deprecated
78    */
79	com::sun::star::uno::Uik getUik();
80
81	/** Returns the members of the interfaces, i.e. attributes and methods.
82
83        @returns
84                interface members
85    */
86	sequence<com::sun::star::reflection::XInterfaceMemberTypeDescription> getMembers();
87};
88
89//=============================================================================
90
91}; }; }; };
92
93/*=============================================================================
94
95=============================================================================*/
96#endif
97