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 方法 变量和类型 方法 描述 方法
ClassType. concreteMethodByName(String name, String signature)
返回从此类可见的具有给定名称和签名的单个非抽象方法
。方法
Location. method()
获取包含此Location的方法。Methods in com.sun.jdi that return types with arguments of type 方法 变量和类型 方法 描述 List<方法>
ReferenceType. allMethods()
返回一个列表,其中包含此类型中声明的每个方法
及其超类,实现的接口和/或超接口。List<方法>
ReferenceType. methods()
返回包含此类型中直接声明的每个方法
的列表。List<方法>
ReferenceType. methodsByName(String name)
返回包含具有给定名称的每个可见方法
的List。List<方法>
ReferenceType. methodsByName(String name, String signature)
返回一个List,其中包含具有给定名称和签名的每个可见方法
。List<方法>
ReferenceType. visibleMethods()
返回包含由此类型声明或继承的每个方法
的列表。Methods in com.sun.jdi with parameters of type 方法 变量和类型 方法 描述 Value
ClassType. invokeMethod(ThreadReference thread, 方法 method, List<? extends Value> arguments, int options)
在目标VM中调用指定的静态方法
。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)
在目标VM中的此对象上调用指定的方法
。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 方法 变量和类型 方法 描述 方法
MethodEntryEvent. method()
返回输入的方法。方法
MethodExitEvent. method()
返回已退出的方法。
-