Uses of Interface
com.sun.jdi.ObjectReference
-
Packages that use ObjectReference 软件包 描述 com.sun.jdi 这是Java调试接口(JDI)的核心包,它定义了值,类型和目标VirtualMachine本身的镜像以及自举设备。com.sun.jdi.event 该包定义了JDI事件和事件处理。com.sun.jdi.request 该包用于请求在指定条件下发送JDI事件。 -
-
Uses of ObjectReference in com.sun.jdi
Subinterfaces of ObjectReference in com.sun.jdi Modifier and Type 接口 描述 interfaceArrayReference提供对目标虚拟机中数组对象及其组件的访问。interfaceClassLoaderReference来自目标VM的类加载器对象。interfaceClassObjectReference来自目标VM的java.lang.Class实例。interfaceModuleReference目标虚拟机中的一个模块。interfaceStringReference来自目标VM的字符串对象。interfaceThreadGroupReference来自目标VM的线程组对象。interfaceThreadReference来自目标VM的线程对象。Methods in com.sun.jdi that return ObjectReference Modifier and Type 方法 描述 ObjectReferenceThreadReference. currentContendedMonitor()返回一个ObjectReference的监视器,如果有的话,这个线程当前正在等待。ObjectReferenceInvocationException. exception()ObjectReferenceMonitorInfo. monitor()返回显示器的ObjectReference对象。ObjectReferenceClassType. newInstance(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)构造此类型的新实例,使用给定的构造方法目标VM。ObjectReferenceStackFrame. thisObject()返回当前帧的“this”值。Methods in com.sun.jdi that return types with arguments of type ObjectReference Modifier and Type 方法 描述 List<ObjectReference>ReferenceType. instances(long maxInstances)返回此ReferenceType的实例。List<ObjectReference>ThreadReference. ownedMonitors()返回一个列表,其中包含线程拥有的每个监视器的一个ObjectReference。List<ObjectReference>ObjectReference. referringObjects(long maxReferrers)返回直接引用此对象的对象。Methods in com.sun.jdi with parameters of type ObjectReference Modifier and Type 方法 描述 voidThreadReference. stop(ObjectReference throwable)停止此线程与异步异常。Constructors in com.sun.jdi with parameters of type ObjectReference Constructor 描述 InvocationException(ObjectReference exception) -
Uses of ObjectReference in com.sun.jdi.event
Methods in com.sun.jdi.event that return ObjectReference Modifier and Type 方法 描述 ObjectReferenceExceptionEvent. exception()获取抛出的异常对象。ObjectReferenceMonitorContendedEnteredEvent. monitor()返回输入的监视器。ObjectReferenceMonitorContendedEnterEvent. monitor()返回输入的方法。ObjectReferenceMonitorWaitedEvent. monitor()返回此线程等待的监视器对象。ObjectReferenceMonitorWaitEvent. monitor()返回线程要等待的监视器对象。ObjectReferenceWatchpointEvent. object()返回字段即将被访问/修改的对象。 -
Uses of ObjectReference in com.sun.jdi.request
Methods in com.sun.jdi.request with parameters of type ObjectReference Modifier and Type 方法 描述 voidBreakpointRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例是指定对象的事件。voidExceptionRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。voidMethodEntryRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。voidMethodExitRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。voidMonitorContendedEnteredRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。voidMonitorContendedEnterRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。voidMonitorWaitedRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。voidMonitorWaitRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。voidStepRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。voidWatchpointRequest. addInstanceFilter(ObjectReference instance)将由此请求生成的事件限制为当前正在执行的实例(“this”)是指定对象的事件。
-