Spec-Zone .ru
спецификации, руководства, описания, API
Java Debug Interface

com.sun.jdi
Interface Locatable

All Known Subinterfaces:
AccessWatchpointEvent, BreakpointEvent, BreakpointRequest, ExceptionEvent, LocatableEvent, Method, MethodEntryEvent, MethodExitEvent, ModificationWatchpointEvent, StackFrame, StepEvent, WatchpointEvent

public interface Locatable

A mirror that has a Location.

Since:
1.3

Method Summary
 Location location()
          Returns the Location of this mirror, if there is executable Java language code associated with it.
 

Method Detail

location

public Location location()
Returns the Location of this mirror, if there is executable Java language code associated with it.
Returns:
the Location of this mirror, or null if there is no executable code associated with it. For example, abstract and native Methods will return null when their location method is called.

Java Debug Interface