blob: 5794b74db3e063091539436b9d18b815b648c969 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef __com_sun_star_reflection_XTypeDescription_idl__
#define __com_sun_star_reflection_XTypeDescription_idl__
#ifndef __com_sun_star_uno_XInterface_idl__
#include <com/sun/star/uno/XInterface.idl>
#endif
#ifndef __com_sun_star_uno_TypeClass_idl__
#include <com/sun/star/uno/TypeClass.idl>
#endif
//=============================================================================
module com { module sun { module star { module reflection {
//=============================================================================
/** Reflects a UNOIDL entity.
@see XPublished
@see XIndirectTypeDescription
@see XEnumTypeDescription
@see XStructTypeDescription
@see XCompoundTypeDescription
@see XInterfaceTypeDescription2
@see XInterfaceAttributeTypeDescription2
@see XInterfaceMethodTypeDescription
@see XConstantTypeDescription
@see XConstantsTypeDescription
@see XServiceTypeDescription2
@see XPropertyTypeDescription2
@see XSingletonTypeDescription2
*/
published interface XTypeDescription : com::sun::star::uno::XInterface
{
/** Returns the type class of the reflected UNOIDL entity.
@return
type class of the entity
*/
com::sun::star::uno::TypeClass getTypeClass();
/** Returns the fully qualified name of the UNOIDL entity.
@return
fully qualified name of the entity
*/
string getName();
};
//=============================================================================
}; }; }; };
/*=============================================================================
=============================================================================*/
#endif