public class com.sun.tools.example.debug.gui.MonitorTool extends javax.swing.JPanel
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: com.sun.tools.example.debug.gui.MonitorTool
super_class: javax.swing.JPanel
{
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: -645235951031726647
private com.sun.tools.example.debug.bdi.ExecutionManager runtime;
descriptor: Lcom/sun/tools/example/debug/bdi/ExecutionManager;
flags: (0x0002) ACC_PRIVATE
private com.sun.tools.example.debug.gui.ContextManager context;
descriptor: Lcom/sun/tools/example/debug/gui/ContextManager;
flags: (0x0002) ACC_PRIVATE
private javax.swing.JList list;
descriptor: Ljavax/swing/JList;
flags: (0x0002) ACC_PRIVATE
public void <init>(com.sun.tools.example.debug.gui.Environment);
descriptor: (Lcom/sun/tools/example/debug/gui/Environment;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: aload 0
new java.awt.BorderLayout
dup
invokespecial java.awt.BorderLayout.<init>:()V
invokespecial javax.swing.JPanel.<init>:(Ljava/awt/LayoutManager;)V
1: aload 0
aload 1
invokevirtual com.sun.tools.example.debug.gui.Environment.getExecutionManager:()Lcom/sun/tools/example/debug/bdi/ExecutionManager;
putfield com.sun.tools.example.debug.gui.MonitorTool.runtime:Lcom/sun/tools/example/debug/bdi/ExecutionManager;
2: aload 0
aload 1
invokevirtual com.sun.tools.example.debug.gui.Environment.getContextManager:()Lcom/sun/tools/example/debug/gui/ContextManager;
putfield com.sun.tools.example.debug.gui.MonitorTool.context:Lcom/sun/tools/example/debug/gui/ContextManager;
3: aload 0
new javax.swing.JList
dup
aload 1
invokevirtual com.sun.tools.example.debug.gui.Environment.getMonitorListModel:()Lcom/sun/tools/example/debug/gui/MonitorListModel;
invokespecial javax.swing.JList.<init>:(Ljavax/swing/ListModel;)V
putfield com.sun.tools.example.debug.gui.MonitorTool.list:Ljavax/swing/JList;
4: aload 0
getfield com.sun.tools.example.debug.gui.MonitorTool.list:Ljavax/swing/JList;
new com.sun.tools.example.debug.gui.MonitorTool$MonitorRenderer
dup
aload 0
invokespecial com.sun.tools.example.debug.gui.MonitorTool$MonitorRenderer.<init>:(Lcom/sun/tools/example/debug/gui/MonitorTool;)V
invokevirtual javax.swing.JList.setCellRenderer:(Ljavax/swing/ListCellRenderer;)V
5: new javax.swing.JScrollPane
dup
aload 0
getfield com.sun.tools.example.debug.gui.MonitorTool.list:Ljavax/swing/JList;
invokespecial javax.swing.JScrollPane.<init>:(Ljava/awt/Component;)V
astore 2
start local 2 6: aload 0
aload 2
invokevirtual com.sun.tools.example.debug.gui.MonitorTool.add:(Ljava/awt/Component;)Ljava/awt/Component;
pop
7: new com.sun.tools.example.debug.gui.MonitorTool$MonitorToolListener
dup
aload 0
invokespecial com.sun.tools.example.debug.gui.MonitorTool$MonitorToolListener.<init>:(Lcom/sun/tools/example/debug/gui/MonitorTool;)V
astore 3
start local 3 8: aload 0
getfield com.sun.tools.example.debug.gui.MonitorTool.list:Ljavax/swing/JList;
aload 3
invokevirtual javax.swing.JList.addListSelectionListener:(Ljavax/swing/event/ListSelectionListener;)V
9: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lcom/sun/tools/example/debug/gui/MonitorTool;
0 10 1 env Lcom/sun/tools/example/debug/gui/Environment;
6 10 2 listView Ljavax/swing/JScrollPane;
8 10 3 listener Lcom/sun/tools/example/debug/gui/MonitorTool$MonitorToolListener;
MethodParameters:
Name Flags
env
private com.sun.jdi.Value evaluate(java.lang.String);
descriptor: (Ljava/lang/String;)Lcom/sun/jdi/Value;
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: new com.sun.tools.example.debug.gui.MonitorTool$1
dup
aload 0
invokespecial com.sun.tools.example.debug.gui.MonitorTool$1.<init>:(Lcom/sun/tools/example/debug/gui/MonitorTool;)V
1: astore 2
start local 2 2: aload 1
aload 0
getfield com.sun.tools.example.debug.gui.MonitorTool.runtime:Lcom/sun/tools/example/debug/bdi/ExecutionManager;
invokevirtual com.sun.tools.example.debug.bdi.ExecutionManager.vm:()Lcom/sun/jdi/VirtualMachine;
aload 2
invokestatic com.sun.tools.example.debug.expr.ExpressionParser.evaluate:(Ljava/lang/String;Lcom/sun/jdi/VirtualMachine;Lcom/sun/tools/example/debug/expr/ExpressionParser$GetFrame;)Lcom/sun/jdi/Value;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lcom/sun/tools/example/debug/gui/MonitorTool;
0 3 1 expr Ljava/lang/String;
2 3 2 frameGetter Lcom/sun/tools/example/debug/expr/ExpressionParser$GetFrame;
Exceptions:
throws com.sun.tools.example.debug.expr.ParseException, com.sun.jdi.InvocationException, com.sun.jdi.InvalidTypeException, com.sun.jdi.ClassNotLoadedException, com.sun.jdi.IncompatibleThreadStateException
MethodParameters:
Name Flags
expr
}
SourceFile: "MonitorTool.java"
NestMembers:
com.sun.tools.example.debug.gui.MonitorTool$1 com.sun.tools.example.debug.gui.MonitorTool$MonitorRenderer com.sun.tools.example.debug.gui.MonitorTool$MonitorToolListener
InnerClasses:
public abstract GetFrame = com.sun.tools.example.debug.expr.ExpressionParser$GetFrame of com.sun.tools.example.debug.expr.ExpressionParser
com.sun.tools.example.debug.gui.MonitorTool$1
private MonitorRenderer = com.sun.tools.example.debug.gui.MonitorTool$MonitorRenderer of com.sun.tools.example.debug.gui.MonitorTool
private MonitorToolListener = com.sun.tools.example.debug.gui.MonitorTool$MonitorToolListener of com.sun.tools.example.debug.gui.MonitorTool