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
-
MethodInfo(Tree[], Type, Symbol, Type[], Type[])
-
-
getExceptionTypes()
- このメソッドで throws 宣言された型を返します。.
-
getParameterTypes()
- このメソッドのパラメータの型を返します。.
-
getReturnType()
- このメソッドの返値の型を返します。.
-
toString()
- この MethodInfo を、人間が読みやすい文字列に変換します。.
MethodInfo
public MethodInfo(Tree modifiers[],
Type returnType,
Symbol name,
Type parameterTypes[],
Type exceptionTypes[])
getReturnType
public Type getReturnType()
- このメソッドの返値の型を返します。.
この MethodInfo がコンストラクタを表す場合の動作は、未定義です。
getParameterTypes
public Type[] getParameterTypes()
- このメソッドのパラメータの型を返します。.
getExceptionTypes
public Type[] getExceptionTypes()
- このメソッドで throws 宣言された型を返します。.
toString
public String toString()
- この MethodInfo を、人間が読みやすい文字列に変換します。.
デバッグ用のメソッドです。
- Overrides:
- toString in class MemberInfo
All Packages Class Hierarchy This Package Previous Next Index