com.sun.star.uno
public interface IMethodDescription extends IMemberDescription
Deprecated: This interface does not cover all the features supported by the corresponding (unpublished) implementation. But no client code should need to access this functionality, anyway.
TheIMethodDescription allows to examine a method
in detail. It gives a view to java methods from a UNO point.
| Method Summary | |
|---|---|
| ITypeDescription[] | getInSignature()
Gives any array of ITypeDescription> of
the [in] parameters.
|
| Method | getMethod()
Gives native java method of this method.
|
| ITypeDescription[] | getOutSignature()
Gives any array of ITypeDescription> of
the [out] parameters.
|
| ITypeDescription | getReturnSignature()
Gives the ITypeDescription of
the return type.
|
| boolean | isConst()
Indicates if this method is const.
|
| boolean | isOneway()
Indicates if this method is oneWay,
respectivly if this method may become executed asynchronously.
|
ITypeDescription> of
the [in] parameters.
Returns: the in parameters
Returns: the java methodd
ITypeDescription> of
the [out] parameters.
Returns: the out parameters
ITypeDescription of
the return type.
Returns: the return type ITypeDescription
Returns: true means it is const.
oneWay,
respectivly if this method may become executed asynchronously.
Returns: true means may execute asynchronously .