-
- All Superinterfaces:
-
Event
,Locatable
,LocatableEvent
,Mirror
- All Known Subinterfaces:
-
AccessWatchpointEvent
,ModificationWatchpointEvent
public interface WatchpointEvent extends LocatableEvent
通知目标VM中线程遇到的字段触发事件。- 从以下版本开始:
- 1.3
- 另请参见:
-
EventQueue
,VirtualMachine
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 Field
field()
返回即将被访问/修改的字段。ObjectReference
object()
返回字段即将被访问/修改的对象。Value
valueCurrent()
现场值。-
Methods inherited from interface com.sun.jdi.event.LocatableEvent
thread
-
Methods inherited from interface com.sun.jdi.Mirror
toString, virtualMachine
-
-
-
-
方法详细信息
-
field
Field field()
返回即将被访问/修改的字段。- 结果
-
一个
Field
镜像目标VM中的字段。 - 异常
-
ObjectCollectedException
- 如果类被垃圾回收,可能会抛出。
-
object
ObjectReference object()
返回字段即将被访问/修改的对象。 返回null是访问是静态字段。- 结果
-
一个
ObjectReference
它反映了目标VM中事件的对象。
-
valueCurrent
Value valueCurrent()
现场值。- 异常
-
ObjectCollectedException
- 如果对象或类已被垃圾回收。
-
-