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

(Global Index)

Syntax

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

Description

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

Method Summary

getName

getType

isIn

isOut

getPosition

Method Details



getName

Syntax

string getName ();

Returns

the name of the parameter.

getType

Syntax

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

Returns

the type of the parameter.

isIn

Syntax

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

Syntax

boolean isOut ();

Returns

true, if the call type of this parameter OUT or INOUT, false, if the call type is IN.

getPosition

Syntax

long getPosition ();

Returns

the position of this parameter in the method definition.
Top of Page