UDK 3.2.0 Java API Reference

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

すべてのスーパーインタフェース:
IMemberDescription

推奨されていません。 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.

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.


メソッドの概要
 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.2.0 Java API Reference