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

unpublished interface XServiceTypeDescription2
Base Interfaces
XServiceTypeDescription2XServiceTypeDescriptionXTypeDescription

XServiceTypeDescription
(referenced interface's summary:)
Reflects a service.
Usage Restrictions
not published
Description
Reflects a service, supporting single-interface–based services.

This type supersedes XServiceTypeDescription, which only supports obsolete, accumulation-based services.

Since
OOo 2.0

Methods' Summary
isSingleInterfaceBased Returns whether this object reflects a single-interface–based service.  
getInterface Returns the interface type associated with the service.  
getConstructors Returns the constructors of the service.  
Methods' Details
isSingleInterfaceBased
boolean
isSingleInterfaceBased();

Description
Returns whether this object reflects a single-interface–based service.
Returns
true if this object reflects a single-interface–based service, and false if this object reflects an obsolete, accumulation-based service
getInterface
XTypeDescription
getInterface();

Description
Returns the interface type associated with the service.
Returns
the reflection of the interface type associated with the service (of type XInterfaceTypeDescription or, in case of a typedef, XIndirectTypeDescription), for a single-interface–based service; for an obsolete, accumulation-based service, NULL is returned
getConstructors
sequence< XServiceConstructorDescription >
getConstructors();

Description
Returns the constructors of the service.
Returns
the reflections of all constructors of the service, in no particular order
Top of Page