All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class epp.MethodInfo

java.lang.Object
   |
   +----epp.MemberInfo
           |
           +----epp.MethodInfo

public class MethodInfo
extends MemberInfo
クラス MethodInfo は、クラスのコンストラクタおよびメソッドに関する情報を保持します。.

See Also:
ClassInfo

Constructor Index

 o MethodInfo(Tree[], Type, Symbol, Type[], Type[])

Method Index

 o getExceptionTypes()
このメソッドで throws 宣言された型を返します。.
 o getParameterTypes()
このメソッドのパラメータの型を返します。.
 o getReturnType()
このメソッドの返値の型を返します。.
 o toString()
この MethodInfo を、人間が読みやすい文字列に変換します。.

Constructors

 o MethodInfo
 public MethodInfo(Tree modifiers[],
                   Type returnType,
                   Symbol name,
                   Type parameterTypes[],
                   Type exceptionTypes[])

Methods

 o getReturnType
 public Type getReturnType()
このメソッドの返値の型を返します。. この MethodInfo がコンストラクタを表す場合の動作は、未定義です。

 o getParameterTypes
 public Type[] getParameterTypes()
このメソッドのパラメータの型を返します。.

 o getExceptionTypes
 public Type[] getExceptionTypes()
このメソッドで throws 宣言された型を返します。.

 o toString
 public String toString()
この MethodInfo を、人間が読みやすい文字列に変換します。. デバッグ用のメソッドです。

Overrides:
toString in class MemberInfo

All Packages  Class Hierarchy  This Package  Previous  Next  Index