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 变量和类型 接口 描述 interfaceArrayReference提供对目标VM中的阵列对象及其组件的访问。interfaceClassLoaderReference来自目标VM的类装入器对象。interfaceClassObjectReference目标VM的java.lang.Class实例。interfaceModuleReference目标VM中的模块。interfaceStringReference来自目标VM的字符串对象。interfaceThreadGroupReference来自目标VM的线程组对象。interfaceThreadReference来自目标VM的线程对象。Methods in com.sun.jdi that return ObjectReference 变量和类型 方法 描述 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 变量和类型 方法 描述 List<ObjectReference>ReferenceType. instances(long maxInstances)返回此ReferenceType的实例。List<ObjectReference>ThreadReference. ownedMonitors()为线程拥有的每个监视器返回包含ObjectReference的List。List<ObjectReference>ObjectReference. referringObjects(long maxReferrers)返回直接引用此对象的对象。Methods in com.sun.jdi with parameters of type ObjectReference 变量和类型 方法 描述 voidThreadReference. stop(ObjectReference throwable)使用异步异常停止此线程。Constructors in com.sun.jdi with parameters of type ObjectReference 构造器 描述 InvocationException(ObjectReference exception) -
Uses of ObjectReference in com.sun.jdi.event
Methods in com.sun.jdi.event that return ObjectReference 变量和类型 方法 描述 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 变量和类型 方法 描述 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”)是指定对象的事件。
-