Uses of Class
com.sun.jdi.AbsentInformationException
Package
Description
This is the core package of the Java Debug
Interface (JDI), it defines mirrors for values, types, and the target
VirtualMachine itself - as well bootstrapping facilities.
-
Uses of AbsentInformationException in com.sun.jdi
Modifier and TypeMethodDescriptionMethod.allLineLocations()
Returns a list containing aLocation
object for each executable source line in this method.Method.allLineLocations
(String stratum, String sourceName) Returns a list containing aLocation
object for each executable source line in this method.ReferenceType.allLineLocations()
Returns a list containing aLocation
object for each executable source line in this reference type.ReferenceType.allLineLocations
(String stratum, String sourceName) Returns a list containing aLocation
object for each executable source line in this reference type.Method.arguments()
Returns a list containing eachLocalVariable
that is declared as an argument of this method.Method.locationsOfLine
(int lineNumber) Returns a List containing allLocation
objects that map to the given line number.Method.locationsOfLine
(String stratum, String sourceName, int lineNumber) Returns a List containing allLocation
objects that map to the given line number and source name.ReferenceType.locationsOfLine
(int lineNumber) Returns a List containing allLocation
objects that map to the given line number.ReferenceType.locationsOfLine
(String stratum, String sourceName, int lineNumber) Returns a List containing allLocation
objects that map to the given line number.ReferenceType.sourceDebugExtension()
Get the source debug extension of this type.Location.sourceName()
Gets an identifying name for the source corresponding to this location.Location.sourceName
(String stratum) Gets an identifying name for the source corresponding to this location.ReferenceType.sourceName()
Gets an identifying name for the source corresponding to the declaration of this type.ReferenceType.sourceNames
(String stratum) Gets the identifying names for all the source corresponding to the declaration of this type.Location.sourcePath()
Gets the path to the source corresponding to this location.Location.sourcePath
(String stratum) Gets the path to the source corresponding to this location.ReferenceType.sourcePaths
(String stratum) Gets the paths to the source corresponding to the declaration of this type.Method.variables()
Returns a list containing eachLocalVariable
declared in this method.Method.variablesByName
(String name) Returns a list containing eachLocalVariable
of a given name in this method.StackFrame.visibleVariableByName
(String name) Finds aLocalVariable
that matches the given name and is visible at the current frame location.StackFrame.visibleVariables()
Returns a list containing eachLocalVariable
that can be accessed from this frame's location.