/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef __com_sun_star_reflection_XTypeDescriptionEnumerationAccess_idl__ #define __com_sun_star_reflection_XTypeDescriptionEnumerationAccess_idl__ #ifndef __com_sun_star_uno_XInterface_idl__ #include #endif #ifndef __com_sun_star_uno_TypeClass_idl__ #include #endif #ifndef __com_sun_star_reflection_XTypeDescriptionEnumeration_idl__ #include #endif #ifndef __com_sun_star_reflection_TypeDescriptionSearchDepth_idl__ #include #endif #ifndef __com_sun_star_reflection_NoSuchTypeNameException_idl__ #include #endif #ifndef __com_sun_star_reflection_InvalidTypeNameException_idl__ #include #endif //============================================================================= module com { module sun { module star { module reflection { //============================================================================= /** Defines an interface for creating enumerations for type descriptions. @since OOo 1.1.2 */ published interface XTypeDescriptionEnumerationAccess : com::sun::star::uno::XInterface { /** Creates an enumeration for type descriptions.

An enumeration is always created for an UNOIDL module. The enumeration contents can be restricted by specifying type classes. Only types that match one of the supplied type classes will be part of the collection. Additionally, it is possible to specify the depth for the search within the underlying type description tree. @param moduleName contains the name of an UNOIDL module. Modules are seperated by a single '.' (i.e., "com.sun.star.reflection"). The root of the module hierarchy is specified with an empty string. Module names are always absolute, never relative. @param types restricts the contents of the enumeration. It will only contain type descriptions that match one of the supplied type classes. An empty sequence specifies that the enumeration shall contain all type descriptions.

Valid types classes are:

  • TypeClass::MODULE
  • TypeClass::INTERFACE
  • TypeClass::SERVICE
  • TypeClass::STRUCT
  • TypeClass::ENUM
  • TypeClass::EXCEPTION
  • TypeClass::TYPEDEF
  • TypeClass::CONSTANT
  • TypeClass::CONSTANTS
  • TypeClass::SINGLETON
@param depth specifies the depth of search in the underlying tree of type descriptions. Clients should be aware of the fact that specifiying TypeDescriptionSearchDepth::INFINITE can lead to larger delays when constructing or using the XTypeDescriptionEnumeration instance. @returns an enumeration of type descriptions.

The enumeration returns implementations of XTypeDescription. Following concrete UNOIDL parts represented by specialized interfaces derived from XTypeDescription can be returned by the enumerator:
IDLinterface
enum XEnumTypeDescription
struct XCompoundTypeDescription (the returned object should actually implement XStructTypeDescription)
exception XCompoundTypeDescription
interface XInterfaceTypeDescription (the returned object should actually implement XInterfaceTypeDescription2)
service XServiceTypeDescription (the returned object should actually implement XServiceTypeDescription2)
singleton XSingletonTypeDescription (the returned object should actually implement XSingletonTypeDescription2)
module XModuleTypeDescription
typedef XIndirectTypeDescription
constant XConstantTypeDescription
constants XConstantsTypeDescription
@throws NoSuchTypeNameException in case that the given module name does not exist. This exception will never be thrown in case moduleName is the empty string. @throws InvalidTypeNameException in case that the given module name does exist, but does not specify an UNOIDL module. This exception will never be thrown in case moduleName is the empty string. */ XTypeDescriptionEnumeration createTypeDescriptionEnumeration( [in] string moduleName, [in] sequence< com::sun::star::uno::TypeClass > types, [in] TypeDescriptionSearchDepth depth ) raises( NoSuchTypeNameException, InvalidTypeNameException ); }; //============================================================================= }; }; }; }; #endif