パッケージ | 説明 |
---|---|
com.sun.jdi |
これは、Java Debug Interface (JDI) のコアパッケージで、ブートストラップ機能以外に、値、型、およびターゲット仮想マシン自体のミラーを定義します。
|
com.sun.jdi.event |
このパッケージは、JDI イベントとイベント処理を定義します。
|
com.sun.jdi.request |
このパッケージは、指定された条件下で JDI イベントが送信されることを要求する場合に使用されます。
|
修飾子と型 | メソッドと説明 |
---|---|
Location |
Locatable.location()
このミラーに関連した実行可能コードが存在する場合、このミラーの
Location を返します。 |
Location |
Method.location()
このメソッドに関連した実行可能コードが存在する場合、このメソッドの
Location を返します。 |
Location |
StackFrame.location()
フレーム内の現在の命令の
Location を返します。 |
Location |
Method.locationOfCodeIndex(long codeIndex)
指定されたコードインデックスに対応する
Location を返します。 |
修飾子と型 | メソッドと説明 |
---|---|
List<Location> |
Method.allLineLocations()
このメソッド内の各実行可能ソース行の
Location オブジェクトを含むリストを返します。 |
List<Location> |
ReferenceType.allLineLocations()
この参照型内の各実行可能ソース行の
Location オブジェクトを含むリストを返します。 |
List<Location> |
Method.allLineLocations(String stratum, String sourceName)
このメソッド内の各実行可能ソース行の
Location オブジェクトを含むリストを返します。 |
List<Location> |
ReferenceType.allLineLocations(String stratum, String sourceName)
この参照型内の各実行可能ソース行の
Location オブジェクトを含むリストを返します。 |
List<Location> |
Method.locationsOfLine(int lineNumber)
指定された行番号にマッピングされたすべての
Location オブジェクトを含むリストを返します。 |
List<Location> |
ReferenceType.locationsOfLine(int lineNumber)
指定された行番号にマッピングされたすべての
Location オブジェクトを含むリストを返します。 |
List<Location> |
Method.locationsOfLine(String stratum, String sourceName, int lineNumber)
指定された行番号とソース名にマッピングされたすべての
Location オブジェクトを含むリストを返します。 |
List<Location> |
ReferenceType.locationsOfLine(String stratum, String sourceName, int lineNumber)
指定された行番号にマッピングされたすべての
Location オブジェクトを含むリストを返します。 |
修飾子と型 | メソッドと説明 |
---|---|
Location |
ExceptionEvent.catchLocation()
例外がキャッチされる位置を取得します。
|
修飾子と型 | メソッドと説明 |
---|---|
Location |
BreakpointRequest.location()
要求されたブレークポイントの位置を返します。
|
修飾子と型 | メソッドと説明 |
---|---|
BreakpointRequest |
EventRequestManager.createBreakpointRequest(Location location)
新しい無効な
BreakpointRequest を作成します。 |
Copyright © 1999, 2013, Oracle and/or its affiliates. All rights reserved.