Uses of Interface
com.sun.jdi.Method
-
Packages that use 方法 软件包 描述 com.sun.jdi 这是Java调试接口(JDI)的核心包,它定义了值,类型和目标VirtualMachine本身的镜像以及自举设备。com.sun.jdi.event 该包定义了JDI事件和事件处理。 -
-
Uses of 方法 in com.sun.jdi
Methods in com.sun.jdi that return 方法 Modifier and Type 方法 描述 方法
ClassType. concreteMethodByName(String name, String signature)
返回从该类可见的具有给定名称和签名的单个非抽象方法
。方法
Location. method()
获取包含此位置的方法。Methods in com.sun.jdi that return types with arguments of type 方法 Modifier and Type 方法 描述 List<方法>
ReferenceType. allMethods()
返回包含此类型中声明的每个方法
及其超类,已实现的接口和/或超级接口的列表。List<方法>
ReferenceType. methods()
返回包含此类型直接声明的每个方法
的列表。List<方法>
ReferenceType. methodsByName(String name)
返回包含具有给定名称的每个可见的方法
的列表。List<方法>
ReferenceType. methodsByName(String name, String signature)
返回一个列表,其中包含具有给定名称和签名的每个可见的方法
。List<方法>
ReferenceType. visibleMethods()
返回包含此类型声明或继承的每个方法
的列表。Methods in com.sun.jdi with parameters of type 方法 Modifier and Type 方法 描述 Value
ClassType. invokeMethod(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
在目标虚拟机中调用指定的静态方法
。default Value
InterfaceType. invokeMethod(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
调用目标VM中指定的静态方法
。Value
ObjectReference. invokeMethod(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
在目标虚拟机中调用此对象上指定的方法
。ObjectReference
ClassType. newInstance(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
构造此类型的新实例,使用给定的构造方法
目标VM。 -
Uses of 方法 in com.sun.jdi.event
Methods in com.sun.jdi.event that return 方法 Modifier and Type 方法 描述 方法
MethodEntryEvent. method()
返回输入的方法。方法
MethodExitEvent. method()
返回退出的方法。
-