|
UNO Java Runtime | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
com.sun.star.uno
Interface IMethodDescription
- All Superinterfaces:
- IMemberDescription
- public interface IMethodDescription
- extends IMemberDescription
The IMethodDescription
allows to examine a method
in detail. It gives a view to java methods from a UNO point.
- Since:
- UDK3.0
Method Summary | |
ITypeDescription[] |
getInSignature()
Gives any array of ITypeDescription> of
the [in] parameters. |
java.lang.reflect.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. |
Methods inherited from interface com.sun.star.uno.IMemberDescription |
getIndex, getName, isAny, isInterface, isUnsigned |
Method Detail |
isOneway
public boolean isOneway()
- Indicates if this method is
oneWay
, respectivly if this method may become executed asynchronously.- Returns:
- true means may execute asynchronously .
isConst
public boolean isConst()
- Indicates if this method is const.
- Returns:
- true means it is const.
getInSignature
public ITypeDescription[] getInSignature()
- Gives any array of
ITypeDescription> of the [in] parameters.
- Returns:
- the in parameters
getOutSignature
public ITypeDescription[] getOutSignature()
- Gives any array of
ITypeDescription> of the [out] parameters.
- Returns:
- the out parameters
getReturnSignature
public ITypeDescription getReturnSignature()
- Gives the
ITypeDescription
of the return type.- Returns:
- the return type
ITypeDescription
getMethod
public java.lang.reflect.Method getMethod()
- Gives native java method of this method.
- Returns:
- the java methodd
|
UNO Java Runtime | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |