:: com :: sun :: star :: reflection ::

unpublished interface XStructTypeDescription
Base Interfaces
XStructTypeDescription
┗ ::com::sun::star::reflection::XCompoundTypeDescription
   ┗ ::com::sun::star::reflection::XTypeDescription

::com::sun::star::reflection::XCompoundTypeDescription
(referenced interface's summary:)
Reflects a compound type, i.e. a struct or exception.
Description
Reflects a struct type, supporting polymorphic struct types.

This type supersedes ::com::sun::star::reflection::XCompoundTypeDescription , which only supports plain struct types.

This type is used to reflect all of the following:

Since
OpenOffice 2.0.0

Methods' Summary
getTypeParameters Returns the type parameters of a polymorphic struct type template.  
getTypeArguments Returns the type arguments of an instantiated polymorphic struct type.  
Methods' Details
getTypeParameters
sequence< string >
getTypeParameters();

Description
Returns the type parameters of a polymorphic struct type template.
Returns
a sequence of the names of all type parameters, in the correct order; for a plain struct type, or an instantiated polymorphic struct type, an empty sequence is returned
getTypeArguments
sequence< ::com::sun::star::reflection::XTypeDescription >
getTypeArguments();

Description
Returns the type arguments of an instantiated polymorphic struct type.
Returns
a sequence of all type arguments, in the correct order; for a plain struct type, or a polymorphic struct type template, an empty sequence is returned
Top of Page