Java Debug Interface

クラス
com.sun.jdi.AbsentInformationException の使用

AbsentInformationException を使用しているパッケージ
com.sun.jdi Java Debug Interface (JDI) のコアパッケージで、ブートストラップ機能以外に、値、型、およびターゲット仮想マシン自体に対するミラーを定義します。 
 

com.sun.jdi での AbsentInformationException の使用
 

AbsentInformationException をスローする com.sun.jdi のメソッド
 List<Location> ReferenceType.allLineLocations()
          この参照型の各実行可能ソース行の位置を示す Location オブジェクトを含むリストを返します。
 List<Location> Method.allLineLocations()
          このメソッド内の各実行可能ソース行の位置を示す Location オブジェクトを含むリストを返します。
 List<Location> ReferenceType.allLineLocations(String stratum, String sourceName)
          この参照型内の各実行可能なソース行に対する Location オブジェクトを含むリストを返します。
 List<Location> Method.allLineLocations(String stratum, String sourceName)
          このメソッド内の各実行可能ソース行の位置を示す Location オブジェクトを含むリストを返します。
 List<LocalVariable> Method.arguments()
          このメソッドの引数として宣言された各 LocalVariable を含むリストを返します。
 List<Location> ReferenceType.locationsOfLine(int lineNumber)
          指定された行番号にマッピングされたすべての Location オブジェクトを含む List を返します。
 List<Location> Method.locationsOfLine(int lineNumber)
          指定された行番号にマッピングされたすべての Location オブジェクトを含む List を返します。
 List<Location> ReferenceType.locationsOfLine(String stratum, String sourceName, int lineNumber)
          指定された行番号にマッピングされたすべての Location オブジェクトを含む List を返します。
 List<Location> Method.locationsOfLine(String stratum, String sourceName, int lineNumber)
          指定された行番号とソース名にマッピングされたすべての Location オブジェクトを含む List を返します。
 String ReferenceType.sourceDebugExtension()
          この型のソースデバッグ拡張機能を取得します。
 String ReferenceType.sourceName()
          この型の宣言に対応するソースの識別名を取得します。
 String Location.sourceName()
          この位置に対応するソースの識別名を取得します。
 String Location.sourceName(String stratum)
          この位置に対応するソースの識別名を取得します。
 List<String> ReferenceType.sourceNames(String stratum)
          この型の宣言に対応するすべてのソースの識別名を取得します。
 String Location.sourcePath()
          この位置に対応するソースへのパスを取得します。
 String Location.sourcePath(String stratum)
          この位置に対応するソースへのパス名を取得します。
 List<String> ReferenceType.sourcePaths(String stratum)
          この型の宣言に対応するすべてのソースのパスを取得します。
 List<LocalVariable> Method.variables()
          このメソッド内で宣言された各 LocalVariable を含むリストを返します。
 List<LocalVariable> Method.variablesByName(String name)
          このメソッド内での指定された名前の各 LocalVariable を含むリストを返します。
 LocalVariable StackFrame.visibleVariableByName(String name)
          LocalVariable のうち、指定された名前と一致し、現在のフレーム位置で可視なものを検索します。
 List<LocalVariable> StackFrame.visibleVariables()
          このフレームの位置からアクセスできるすべての LocalVariable のリストを返します。
 


Java Debug Interface