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 ();

Description

Returns

the name of the parameter.

getType

Syntax

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

Description

Returns

the type of the parameter.

isIn

Syntax

boolean isIn ();

Description

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 ();

Description

Returns

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

getPosition

Syntax

long getPosition ();

Description

Returns

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