public class sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode implements sun.jvm.hotspot.ui.tree.SimpleTreeNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode
  super_class: java.lang.Object
{
  private java.util.List<sun.jvm.hotspot.ui.tree.SimpleTreeNode> children;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lsun/jvm/hotspot/ui/tree/SimpleTreeNode;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode.children:Ljava/util/List;
         2: .line 37
            return
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;

  public int getChildCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
         0: .line 39
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode.children:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;

  public sun.jvm.hotspot.ui.tree.SimpleTreeNode getChild(int);
    descriptor: (I)Lsun/jvm/hotspot/ui/tree/SimpleTreeNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
        start local 1 // int index
         0: .line 41
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode.children:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast sun.jvm.hotspot.ui.tree.SimpleTreeNode
            areturn
        end local 1 // int index
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public void addChild(sun.jvm.hotspot.ui.tree.SimpleTreeNode);
    descriptor: (Lsun/jvm/hotspot/ui/tree/SimpleTreeNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
        start local 1 // sun.jvm.hotspot.ui.tree.SimpleTreeNode child
         0: .line 44
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode.children:Ljava/util/List;
            aload 1 /* child */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 45
            return
        end local 1 // sun.jvm.hotspot.ui.tree.SimpleTreeNode child
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;
            0    2     1  child  Lsun/jvm/hotspot/ui/tree/SimpleTreeNode;
    MethodParameters:
       Name  Flags
      child  

  public sun.jvm.hotspot.ui.tree.SimpleTreeNode removeChild(int);
    descriptor: (I)Lsun/jvm/hotspot/ui/tree/SimpleTreeNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
        start local 1 // int index
         0: .line 47
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode.children:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            checkcast sun.jvm.hotspot.ui.tree.SimpleTreeNode
            areturn
        end local 1 // int index
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public void removeAllChildren();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
         0: .line 50
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode.children:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 51
            return
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;

  public boolean isLeaf();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
         0: .line 53
            iconst_0
            ireturn
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;

  public int getIndexOfChild(sun.jvm.hotspot.ui.tree.SimpleTreeNode);
    descriptor: (Lsun/jvm/hotspot/ui/tree/SimpleTreeNode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
        start local 1 // sun.jvm.hotspot.ui.tree.SimpleTreeNode child
         0: .line 56
            aload 0 /* this */
            getfield sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode.children:Ljava/util/List;
            aload 1 /* child */
            invokeinterface java.util.List.indexOf:(Ljava/lang/Object;)I
            ireturn
        end local 1 // sun.jvm.hotspot.ui.tree.SimpleTreeNode child
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;
            0    1     1  child  Lsun/jvm/hotspot/ui/tree/SimpleTreeNode;
    MethodParameters:
       Name  Flags
      child  

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
         0: .line 59
            aconst_null
            areturn
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;

  public java.lang.String getValue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
         0: .line 60
            aconst_null
            areturn
        end local 0 // sun.jvm.hotspot.ui.tree.SimpleTreeGroupNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/ui/tree/SimpleTreeGroupNode;
}
SourceFile: "SimpleTreeGroupNode.java"