Uses of Interface
com.sun.jdi.Mirror
-
Packages that use Mirror 软件包 描述 com.sun.jdi 这是Java调试接口(JDI)的核心包,它定义了值,类型和目标VirtualMachine本身的镜像以及自举设备。com.sun.jdi.event 该包定义了JDI事件和事件处理。com.sun.jdi.request 该包用于请求在指定条件下发送JDI事件。 -
-
Uses of Mirror in com.sun.jdi
Subinterfaces of Mirror in com.sun.jdi Modifier and Type 接口 描述 interfaceArrayReference提供对目标虚拟机中数组对象及其组件的访问。interfaceArrayType提供对数组类的访问及其在目标虚拟机中的组件类型。interfaceBooleanType在目标VM中访问的所有原始boolean类型。interfaceBooleanValue提供对目标VM中原始数据boolean访问权限。interfaceByteType在目标VM中访问的所有原始字节值的类型。interfaceByteValue提供对目标虚拟机中基元byte值的访问。interfaceCharType在目标虚拟机中访问的所有原始字符值的类型。interfaceCharValue提供对目标虚拟机char语char值的访问。interfaceClassLoaderReference来自目标VM的类加载器对象。interfaceClassObjectReference来自目标VM的java.lang.Class实例。interfaceClassType目标VM中的类的镜像。interfaceDoubleType在目标VM中访问的所有原始双值的类型。interfaceDoubleValue提供对目标VMdouble语double值的访问。interfaceField目标VM中的类或实例变量。interfaceFloatType在目标VM中访问的所有原始浮点值的类型。interfaceFloatValue提供对目标VMfloat语float值的访问。interfaceIntegerType在目标VM中访问的所有原始int类型。interfaceIntegerValue提供对目标VMint语int值的访问。interfaceInterfaceType目标虚拟机中的接口的镜像。interfaceLocalVariable目标VM中的局部变量。interfaceLocation目标VM的执行代码中的一个点。interfaceLongType在目标虚拟机中访问的所有原始long的类型long。interfaceLongValue提供对目标VMlong语long值的访问。interface方法目标VM中的静态或实例方法。interfaceModuleReference目标虚拟机中的一个模块。interfaceMonitorInfo有关线程拥有的监视器的信息。interfaceObjectReference当前存在于目标VM中的对象。interfacePathSearchingVirtualMachine通过路径搜索类的虚拟机interfacePrimitiveType与目标VM中的非对象值相关联的类型。interfacePrimitiveValue分配给目标VM中的原始类型的字段或变量的值。interfaceReferenceType目标虚拟机中对象的类型。interfaceShortType在目标VM中访问的所有原语short值的类型。interfaceShortValue提供对目标VM中原始值short值的访问。interfaceStackFrame线程调用堆栈上的一种方法调用的状态。interfaceStringReference来自目标VM的字符串对象。interfaceThreadGroupReference来自目标VM的线程组对象。interfaceThreadReference来自目标VM的线程对象。interfaceType目标VM中类型的镜像。interfaceTypeComponent在用户定义的类型(类或接口)内声明的实体。interfaceValue目标VM中的值的镜像。interfaceVirtualMachine用于调试的虚拟机。interfaceVoidType在目标虚拟机中访问的所有原始void类型。interfaceVoidValue提供对目标VMvoid语void值的访问。 -
Uses of Mirror in com.sun.jdi.event
Subinterfaces of Mirror in com.sun.jdi.event Modifier and Type 接口 描述 interfaceAccessWatchpointEvent通知目标VM中的现场访问。interfaceBreakpointEvent通知目标VM中的断点。interfaceClassPrepareEvent在目标虚拟机中通知类准备。interfaceClassUnloadEvent在目标VM中卸载类的通知。interfaceEvent调试器感兴趣的目标虚拟机中的一个事件。interfaceEventQueue目标虚拟机的调试器事件管理器。interfaceEventSet可以在给定时间由目标VirtualMachine创建几个Event个对象。interfaceExceptionEvent通知目标VM中的异常。interfaceLocatableEvent具有位置和线程的事件的抽象超界面。interfaceMethodEntryEvent在目标虚拟机中通知方法调用。interfaceMethodExitEvent在目标VM中返回方法的通知。interfaceModificationWatchpointEvent通知目标VM中的字段修改。interfaceMonitorContendedEnteredEvent通知目标VM中的线程等待其他线程释放后进入监视器。interfaceMonitorContendedEnterEvent通知目标虚拟机中的线程正在尝试进入已被另一个线程获取的监视器。interfaceMonitorWaitedEvent通知目标VM中的线程已经完成等待监视器对象。interfaceMonitorWaitEvent通知目标VM中的线程即将等待监视器对象。interfaceStepEvent通知目标VM中的步骤完成。interfaceThreadDeathEvent在目标虚拟机中通知已完成的线程。interfaceThreadStartEvent在目标虚拟机中通知新运行的线程。interfaceVMDeathEvent目标VM终止通知。interfaceVMDisconnectEvent断开目标VM的通知。interfaceVMStartEvent通知初始化目标虚拟机。interfaceWatchpointEvent通知目标VM中线程遇到的字段触发事件。 -
Uses of Mirror in com.sun.jdi.request
Subinterfaces of Mirror in com.sun.jdi.request Modifier and Type 接口 描述 interfaceAccessWatchpointRequest在目标虚拟机中访问字段的内容时请求通知。interfaceBreakpointRequest标识目标虚拟机中应停止执行的Location。interfaceClassPrepareRequest在目标虚拟机中准备课程时请求通知。interfaceClassUnloadRequest在目标虚拟机中卸载类时请求通知。interfaceEventRequest表示通知事件的请求。interfaceEventRequestManager管理创建和删除EventRequests。interfaceExceptionRequest在目标虚拟机发生异常时请求通知。interfaceMethodEntryRequest在目标虚拟机中调用方法时请求通知。interfaceMethodExitRequest当方法在目标虚拟机中返回时请求通知。interfaceModificationWatchpointRequest设置字段时请求通知。interfaceMonitorContendedEnteredRequest在等待其他线程释放之后,请求目标VM中的线程通知进入监视器。interfaceMonitorContendedEnterRequest请求在目标VM中尝试进入另一个线程已经获取的监视器的线程的通知。interfaceMonitorWaitedRequest当目标虚拟机中的线程已经完成等待监视对象时,请求通知。interfaceMonitorWaitRequest当目标虚拟机中的线程即将等待监视对象时,请求通知。interfaceStepRequest在目标虚拟机中发生步骤时请求通知。interfaceThreadDeathRequest线程在目标虚拟机中终止时请求通知。interfaceThreadStartRequest线程在目标虚拟机中启动执行时请求通知。interfaceVMDeathRequest当目标VM终止时请求通知。interfaceWatchpointRequest标识正在观看的目标虚拟机中的Field。
-