interface XInterfaceMethodTypeDescription in module com::sun::star::reflection::

(Global Index)

Syntax

interface XInterfaceMethodTypeDescription : com::sun::star::reflection::XInterfaceMemberTypeDescription ;

Description

The interface method type description. The type class of this description is TypeClass_INTERFACE_METHOD.

Method Summary

getReturnType

isOneway

getParameters

getExceptions

Method Details



getReturnType

Syntax

com::sun::star::reflection::XTypeDescription getReturnType ();

Description

Returns

the type of the return value.

isOneway

Syntax

boolean isOneway ();

Description

Returns

true if the function is oneway, otherwise false.

getParameters

Syntax

sequence< com::sun::star::reflection::XMethodParameter > getParameters ();

Description

Returns

the array of parameters.

getExceptions

Syntax

sequence< com::sun::star::reflection::XTypeDescription > getExceptions ();

Description

Returns

the array of exceptions.
Top of Page