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

interface XServiceTypeDescription
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XTypeDescription
    |
    +-XServiceTypeDescription
Description
Reflects a service.

The type class of this type is ::com::sun::star::uno::TypeClass::SERVICE .

Since version
OpenOffice.org 1.1.5

Methods' Summary
getMandatoryServices Returns the type descriptions of the mandatory services defined for this service.
getOptionalServices Returns the type descriptions of the optional services defined for this service.
getMandatoryInterfaces Returns the type descriptions of the mandatory interfaces defined for this service.
getOptionalInterfaces Returns the type descriptions of the optional interface defined for this service.
getProperties Returns the properties defined for this service.
Methods' Details
getMandatoryServices
sequence< XServiceTypeDescription >
getMandatoryServices();
 
 

Description
Returns the type descriptions of the mandatory services defined for this service.
Returns
a sequence containing service type descriptions.
getOptionalServices
sequence< XServiceTypeDescription >
getOptionalServices();
 
 

Description
Returns the type descriptions of the optional services defined for this service.
Returns
a sequence containing service type descriptions.
getMandatoryInterfaces
sequence< XInterfaceTypeDescription >
getMandatoryInterfaces();
 
 

Description
Returns the type descriptions of the mandatory interfaces defined for this service.
Returns
a sequence containing interface type descriptions.
getOptionalInterfaces
sequence< XInterfaceTypeDescription >
getOptionalInterfaces();
 
 

Description
Returns the type descriptions of the optional interface defined for this service.
Returns
a sequence containing interface type descriptions.
getProperties
sequence< XPropertyTypeDescription >
getProperties();
 
 

Description
Returns the properties defined for this service.
Returns
a sequence containing property descriptions.
Top of Page