パッケージ | 説明 |
---|---|
com.sun.jdi |
これは、Java Debug Interface (JDI) のコアパッケージで、ブートストラップ機能以外に、値、型、およびターゲット仮想マシン自体のミラーを定義します。
|
com.sun.jdi.event |
このパッケージは、JDI イベントとイベント処理を定義します。
|
修飾子と型 | メソッドと説明 |
---|---|
Method |
ClassType.concreteMethodByName(String name, String signature)
指定された名前およびシグニチャーを持つこのクラスから認識可能な、単一の非 abstract
Method を返します。 |
Method |
Location.method()
この Location を含むメソッドを取得します。
|
修飾子と型 | メソッドと説明 |
---|---|
List<Method> |
ReferenceType.allMethods()
この型、そのスーパークラス、実装インタフェース、およびスーパーインタフェース、またはそのいずれかで宣言された各
Method を含むリストを返します。 |
List<Method> |
ReferenceType.methods()
この型で直接宣言された各
Method を含むリストを返します。 |
List<Method> |
ReferenceType.methodsByName(String name)
指定された名前を持つ各可視
Method を含むリストを返します。 |
List<Method> |
ReferenceType.methodsByName(String name, String signature)
指定された名前とシグニチャーを持つ各可視
Method を含むリストを返します。 |
List<Method> |
ReferenceType.visibleMethods()
この型によって宣言された、またはこの型に継承された各
Method を含むリストを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
Value |
ClassType.invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options)
ターゲット VM 内の指定された static
Method を呼び出します。 |
Value |
ObjectReference.invokeMethod(ThreadReference thread, Method method, List<? extends Value> arguments, int options)
ターゲット VM 内のこのオブジェクトで指定された
Method を呼び出します。 |
ObjectReference |
ClassType.newInstance(ThreadReference thread, Method method, List<? extends Value> arguments, int options)
ターゲット VM 内の指定されたコンストラクタの
Method を使って、この型の新規インスタンスを構築します。 |
修飾子と型 | メソッドと説明 |
---|---|
Method |
MethodEntryEvent.method()
入ったメソッドを返します。
|
Method |
MethodExitEvent.method()
終了したメソッドを返します。
|
Copyright © 1999, 2013, Oracle and/or its affiliates. All rights reserved.