Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XInterfaceMethodTypeDescription

Base Interface
com::sun::star::reflection::XInterfaceMemberTypeDescription

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


Methods' Summary

getReturnType
isOneway
getParameters
getExceptions

Methods' Details

getReturnType
 
com::sun::star::reflection::XTypeDescription
getReturnType();
Returns
the type of the return value.
isOneway
 
boolean
isOneway();
Returns
true if the function is oneway, otherwise false.
getParameters
 
sequence< com::sun::star::reflection::XMethodParameter >
getParameters();
Returns
the array of parameters.
getExceptions
 
sequence< com::sun::star::reflection::XTypeDescription >
getExceptions();
Returns
the array of exceptions.

Top of Page