com.sun.star.uno
Interface IMethodDescription
- IMemberDescription
public interface IMethodDescription
The IMethodDescription allows to examine a method
in detail. It gives a view to java methods from a UNO point.
getInSignature
public ITypeDescription[] getInSignature()
Gives any array of
ITypeDescription> of
the [in] parameters.
getMethod
public Method getMethod()
Gives native java method of this method.
getOutSignature
public ITypeDescription[] getOutSignature()
Gives any array of
ITypeDescription> of
the [out] parameters.
getReturnSignature
public ITypeDescription getReturnSignature()
Gives the
ITypeDescription of
the return type.
- the return type
ITypeDescription
isConst
public boolean isConst()
Indicates if this method is const.
isOneway
public boolean isOneway()
Indicates if this method is
oneWay,
respectivly if this method may become executed asynchronously.
- true means may execute asynchronously .