Uses of Class
com.sun.jdi.AbsentInformationException
Package | Description |
---|---|
com.sun.jdi |
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
Methods in com.sun.jdi that throw AbsentInformationException Modifier and Type Method Description List<Location>
Method. allLineLocations()
Returns a list containing aLocation
object for each executable source line in this method.List<Location>
Method. allLineLocations(String stratum, String sourceName)
Returns a list containing aLocation
object for each executable source line in this method.List<Location>
ReferenceType. allLineLocations()
Returns a list containing aLocation
object for each executable source line in this reference type.List<Location>
ReferenceType. allLineLocations(String stratum, String sourceName)
Returns a list containing aLocation
object for each executable source line in this reference type.List<LocalVariable>
Method. arguments()
Returns a list containing eachLocalVariable
that is declared as an argument of this method.List<Location>
Method. locationsOfLine(int lineNumber)
Returns a List containing allLocation
objects that map to the given line number.List<Location>
Method. locationsOfLine(String stratum, String sourceName, int lineNumber)
Returns a List containing allLocation
objects that map to the given line number and source name.List<Location>
ReferenceType. locationsOfLine(int lineNumber)
Returns a List containing allLocation
objects that map to the given line number.List<Location>
ReferenceType. locationsOfLine(String stratum, String sourceName, int lineNumber)
Returns a List containing allLocation
objects that map to the given line number.String
ReferenceType. sourceDebugExtension()
Get the source debug extension of this type.String
Location. sourceName()
Gets an identifing name for the source corresponding to this location.String
Location. sourceName(String stratum)
Gets an identifing name for the source corresponding to this location.String
ReferenceType. sourceName()
Gets an identifying name for the source corresponding to the declaration of this type.List<String>
ReferenceType. sourceNames(String stratum)
Gets the identifying names for all the source corresponding to the declaration of this type.String
Location. sourcePath()
Gets the path to the source corresponding to this location.String
Location. sourcePath(String stratum)
Gets the path to the source corresponding to this location.List<String>
ReferenceType. sourcePaths(String stratum)
Gets the paths to the source corresponding to the declaration of this type.List<LocalVariable>
Method. variables()
Returns a list containing eachLocalVariable
declared in this method.List<LocalVariable>
Method. variablesByName(String name)
Returns a list containing eachLocalVariable
of a given name in this method.LocalVariable
StackFrame. visibleVariableByName(String name)
Finds aLocalVariable
that matches the given name and is visible at the current frame location.List<LocalVariable>
StackFrame. visibleVariables()
Returns a list containing eachLocalVariable
that can be accessed from this frame's location.