Uses of Interface
com.sun.jdi.Location
Packages that use Location
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.
This package defines JDI events and event processing.
This package is used to request that a JDI
event be sent under specified conditions.
-
Uses of Location in com.sun.jdi
Methods in com.sun.jdi that return LocationModifier and TypeMethodDescriptionLocatable.location()
Returns theLocation
of this mirror, if there is executable code associated with it.Method.location()
Returns theLocation
of this method, if there is executable code associated with it.StackFrame.location()
Returns theLocation
of the current instruction in the frame.Method.locationOfCodeIndex(long codeIndex)
Returns aLocation
for the given code index.Methods in com.sun.jdi that return types with arguments of type LocationModifier 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.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. -
Uses of Location in com.sun.jdi.event
Methods in com.sun.jdi.event that return LocationModifier and TypeMethodDescriptionExceptionEvent.catchLocation()
Gets the location where the exception will be caught. -
Uses of Location in com.sun.jdi.request
Methods in com.sun.jdi.request that return LocationModifier and TypeMethodDescriptionBreakpointRequest.location()
Returns the location of the requested breakpoint.Methods in com.sun.jdi.request with parameters of type LocationModifier and TypeMethodDescriptionEventRequestManager.createBreakpointRequest(Location location)
Creates a new disabledBreakpointRequest
.