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

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

interface XMethodParameter

Base Interface
com::sun::star::uno::XInterface

Description
The description of an interface method parameter.
One of the methods isIn() or isOut() must return true.


Methods' Summary

getName
getType
isIn
isOut
getPosition

Methods' Details

getName
 
string
getName();
Returns
the name of the parameter.
getType
 
com::sun::star::reflection::XTypeDescription
getType();
Returns
the type of the parameter.
isIn
 
boolean
isIn();
Returns
true, if the call type of this parameter IN or INOUT if in parameter, false, if the call type is OUT.
isOut
 
boolean
isOut();
Returns
true, if the call type of this parameter OUT or INOUT, false, if the call type is IN.
getPosition
 
long
getPosition();
Returns
the position of this parameter in the method definition.

Top of Page