-
- All Known Subinterfaces:
-
AccessWatchpointEvent,AccessWatchpointRequest,ArrayReference,ArrayType,BooleanType,BooleanValue,BreakpointEvent,BreakpointRequest,ByteType,ByteValue,CharType,CharValue,ClassLoaderReference,ClassObjectReference,ClassPrepareEvent,ClassPrepareRequest,ClassType,ClassUnloadEvent,ClassUnloadRequest,DoubleType,DoubleValue,Event,EventQueue,EventRequest,EventRequestManager,EventSet,ExceptionEvent,ExceptionRequest,字段,FloatType,FloatValue,IntegerType,IntegerValue,InterfaceType,LocalVariable,LocatableEvent,Location,LongType,LongValue,方法,MethodEntryEvent,MethodEntryRequest,MethodExitEvent,MethodExitRequest,ModificationWatchpointEvent,ModificationWatchpointRequest,ModuleReference,MonitorContendedEnteredEvent,MonitorContendedEnteredRequest,MonitorContendedEnterEvent,MonitorContendedEnterRequest,MonitorInfo,MonitorWaitedEvent,MonitorWaitedRequest,MonitorWaitEvent,MonitorWaitRequest,ObjectReference,PathSearchingVirtualMachine,PrimitiveType,PrimitiveValue,ReferenceType,ShortType,ShortValueShortValue,StackFrame,StepEvent,StepRequest,StringReference,ThreadDeathEvent,ThreadDeathRequest,ThreadGroupReference,ThreadReference,ThreadStartEvent,ThreadStartRequest,Type,TypeComponent,Value,VirtualMachine,VMDeathEvent,VMDeathRequest,VMDisconnectEvent,VMStartEvent,VoidType,VoidValue,WatchpointEvent,WatchpointRequest
public interface Mirror调试器用于检查或操纵另一个虚拟机中的某个实体的代理。 Mirror是此程序包的接口层次结构的根。 镜像可以是目标VM中对象的代理(ObjectReference),原始值(例如,IntegerValue),类型(例如,ReferenceType),动态应用程序状态(例如,StackFrame),甚至是调试器特定的构造(例如,BreakpointRequest)。VirtualMachine本身也被视为镜像,表示目标VM的复合状态。无法保证目标VM中的特定实体将映射到单个Mirror实例。 实现者可以自由决定是否将一个镜像用于某些或所有镜像。 此接口的客户端应始终使用
equals来比较两个镜像是否相等。上的任何方法
Mirror采用一个Mirror作为直接或间接的参数(例如,如在一个元件List)将抛出VMMismatchException如果反射镜是从不同的虚拟机。- 从以下版本开始:
- 1.3
- 另请参见:
-
VirtualMachine
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 StringtoString()返回描述此镜像的StringVirtualMachinevirtualMachine()获取此镜像所属的VirtualMachine。
-
-
-
方法详细信息
-
virtualMachine
VirtualMachine virtualMachine()
获取此镜像所属的VirtualMachine。 镜像必须与VirtualMachine相关联才能具有任何意义。- 结果
-
VirtualMachine,这个镜像是代理。
-
-