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

interface XInterfaceMethodTypeDescription
Base Interfaces
XInterfaceMethodTypeDescriptionXInterfaceMemberTypeDescriptionXTypeDescription

XInterfaceMemberTypeDescription
(referenced interface's summary:)
Base interface for reflected interface members.
Description
Reflects an interface method type. The type class of this type is TypeClass_INTERFACE_METHOD.

Methods' Summary
getReturnType Returns the method's return type.  
isOneway Returns true, if this method is declared oneway.  
getParameters Returns all parameters of the method in order of IDL declaration.  
getExceptions Returns declared exceptions that may occur upon invocations of the method.  
Methods' Details
getReturnType
XTypeDescription
getReturnType();

Description
Returns the method's return type.
Returns
method's return type
isOneway
boolean
isOneway();

Description
Returns true, if this method is declared oneway.
Returns
true, if this method is declared oneway
getParameters
sequence< XMethodParameter >
getParameters();

Description
Returns all parameters of the method in order of IDL declaration.
Returns
method parameters
getExceptions
sequence< XTypeDescription >
getExceptions();

Description
Returns declared exceptions that may occur upon invocations of the method.
Returns
declared exceptions of method
Top of Page