interface XServiceInfo in module com::sun::star::lang::

(Global Index)

Syntax

interface XServiceInfo : com::sun::star::uno::XInterface ;

Description

provides information regarding which services are implemented.

See also

XSingleServiceFactory

See also

XToolSupplier

Method Summary

getImplementationName

supportsService asks whether a service is supported or not.

getSupportedServiceNames

Method Details



getImplementationName

Syntax

string getImplementationName ();

Description

Returns

an identifier for the implementation of this object.

In general this should be a qualified identifier like "com.sun.star.comp.office.writer.SwTextDocument".


supportsService

Syntax

boolean supportsService (
string ServiceName );

Description

asks whether a service is supported or not.


getSupportedServiceNames

Syntax

sequence< string > getSupportedServiceNames ();

Description

Returns

a sequence of the names of all supported services.

This includes the services which are indirectly supported because they are part of the specification of directly supported services.

Top of Page