UDK 3.1.0 Java API Reference

com.sun.star.uno
インタフェース IMethodDescription

すべてのスーパーインタフェース:
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.

導入されたバージョン:
UDK3.0

メソッドの概要
 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.
 
インタフェース com.sun.star.uno.IMemberDescription から継承したメソッド
getIndex, getName, isAny, isInterface, isUnsigned
 

メソッドの詳細

isOneway

public boolean isOneway()
Indicates if this method is oneWay, respectivly if this method may become executed asynchronously.

戻り値:
true means may execute asynchronously .

isConst

public boolean isConst()
Indicates if this method is const.

戻り値:
true means it is const.

getInSignature

public ITypeDescription[] getInSignature()
Gives any array of ITypeDescription> of the [in] parameters.

戻り値:
the in parameters

getOutSignature

public ITypeDescription[] getOutSignature()
Gives any array of ITypeDescription> of the [out] parameters.

戻り値:
the out parameters

getReturnSignature

public ITypeDescription getReturnSignature()
Gives the ITypeDescription of the return type.

戻り値:
the return type ITypeDescription

getMethod

public Method getMethod()
Gives native java method of this method.

戻り値:
the java methodd

UDK 3.1.0 Java API Reference