| Whole document treeJava Debug Interface: Interface  WatchpointEvent 
 
com.sun.jdi.event
Interface  WatchpointEvent
All Superinterfaces: Event, Locatable, LocatableEvent, Mirror 
All Known Subinterfaces: AccessWatchpointEvent, ModificationWatchpointEvent 
 
public interface WatchpointEventextends LocatableEvent 
Notification of a field triggered event encountered by a thread in the 
 target VM.
 
 
Since: 1.3See Also: EventQueue,VirtualMachine 
 
 
| Methods inherited from interface com.sun.jdi.event.Event |  
| request |  
 
field
public Field field() 
Returns the field that is about to be accessed/modified.
Returns:a Fieldwhich mirrors the field
 in the target VM. 
 
object
public ObjectReference object() 
Returns the object whose field is about to be accessed/modified. 
 Return null is the access is to a static field.
Returns:a ObjectReferencewhich mirrors the event's 
 object in the target VM. 
 
valueCurrent
public Value valueCurrent() 
Current value of the field.
 
 
 |