class sun.management.MemoryManagerImpl extends sun.management.NotificationEmitterSupport implements java.lang.management.MemoryManagerMXBean
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.management.MemoryManagerImpl
  super_class: sun.management.NotificationEmitterSupport
{
  private final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean isValid;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.lang.management.MemoryPoolMXBean[] pools;
    descriptor: [Ljava/lang/management/MemoryPoolMXBean;
    flags: (0x0002) ACC_PRIVATE

  private javax.management.MBeanNotificationInfo[] notifInfo;
    descriptor: [Ljavax/management/MBeanNotificationInfo;
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.management.MemoryManagerImpl this
        start local 1 // java.lang.String name
         0: .line 49
            aload 0 /* this */
            invokespecial sun.management.NotificationEmitterSupport.<init>:()V
         1: .line 81
            aload 0 /* this */
            aconst_null
            putfield sun.management.MemoryManagerImpl.notifInfo:[Ljavax/management/MBeanNotificationInfo;
         2: .line 50
            aload 0 /* this */
            aload 1 /* name */
            putfield sun.management.MemoryManagerImpl.name:Ljava/lang/String;
         3: .line 51
            aload 0 /* this */
            iconst_1
            putfield sun.management.MemoryManagerImpl.isValid:Z
         4: .line 52
            aload 0 /* this */
            aconst_null
            putfield sun.management.MemoryManagerImpl.pools:[Ljava/lang/management/MemoryPoolMXBean;
         5: .line 53
            return
        end local 1 // java.lang.String name
        end local 0 // sun.management.MemoryManagerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/management/MemoryManagerImpl;
            0    6     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  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.management.MemoryManagerImpl this
         0: .line 56
            aload 0 /* this */
            getfield sun.management.MemoryManagerImpl.name:Ljava/lang/String;
            areturn
        end local 0 // sun.management.MemoryManagerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/MemoryManagerImpl;

  public boolean isValid();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.management.MemoryManagerImpl this
         0: .line 60
            aload 0 /* this */
            getfield sun.management.MemoryManagerImpl.isValid:Z
            ireturn
        end local 0 // sun.management.MemoryManagerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/MemoryManagerImpl;

  public java.lang.String[] getMemoryPoolNames();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // sun.management.MemoryManagerImpl this
         0: .line 64
            aload 0 /* this */
            invokevirtual sun.management.MemoryManagerImpl.getMemoryPools:()[Ljava/lang/management/MemoryPoolMXBean;
            astore 1 /* ps */
        start local 1 // java.lang.management.MemoryPoolMXBean[] ps
         1: .line 66
            aload 1 /* ps */
            arraylength
            anewarray java.lang.String
            astore 2 /* names */
        start local 2 // java.lang.String[] names
         2: .line 67
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 68
      StackMap locals: java.lang.management.MemoryPoolMXBean[] java.lang.String[] int
      StackMap stack:
            aload 2 /* names */
            iload 3 /* i */
            aload 1 /* ps */
            iload 3 /* i */
            aaload
            invokeinterface java.lang.management.MemoryPoolMXBean.getName:()Ljava/lang/String;
            aastore
         5: .line 67
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 1 /* ps */
            arraylength
            if_icmplt 4
        end local 3 // int i
         7: .line 70
            aload 2 /* names */
            areturn
        end local 2 // java.lang.String[] names
        end local 1 // java.lang.management.MemoryPoolMXBean[] ps
        end local 0 // sun.management.MemoryManagerImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lsun/management/MemoryManagerImpl;
            1    8     1     ps  [Ljava/lang/management/MemoryPoolMXBean;
            2    8     2  names  [Ljava/lang/String;
            3    7     3      i  I

  synchronized java.lang.management.MemoryPoolMXBean[] getMemoryPools();
    descriptor: ()[Ljava/lang/management/MemoryPoolMXBean;
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.management.MemoryManagerImpl this
         0: .line 74
            aload 0 /* this */
            getfield sun.management.MemoryManagerImpl.pools:[Ljava/lang/management/MemoryPoolMXBean;
            ifnonnull 2
         1: .line 75
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.management.MemoryManagerImpl.getMemoryPools0:()[Ljava/lang/management/MemoryPoolMXBean;
            putfield sun.management.MemoryManagerImpl.pools:[Ljava/lang/management/MemoryPoolMXBean;
         2: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.management.MemoryManagerImpl.pools:[Ljava/lang/management/MemoryPoolMXBean;
            areturn
        end local 0 // sun.management.MemoryManagerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/management/MemoryManagerImpl;

  private native java.lang.management.MemoryPoolMXBean[] getMemoryPools0();
    descriptor: ()[Ljava/lang/management/MemoryPoolMXBean;
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE

  public javax.management.MBeanNotificationInfo[] getNotificationInfo();
    descriptor: ()[Ljavax/management/MBeanNotificationInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.management.MemoryManagerImpl this
         0: .line 83
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 84
            aload 0 /* this */
            getfield sun.management.MemoryManagerImpl.notifInfo:[Ljavax/management/MBeanNotificationInfo;
            ifnonnull 3
         2: .line 85
            aload 0 /* this */
            iconst_0
            anewarray javax.management.MBeanNotificationInfo
            putfield sun.management.MemoryManagerImpl.notifInfo:[Ljavax/management/MBeanNotificationInfo;
         3: .line 83
      StackMap locals: sun.management.MemoryManagerImpl
      StackMap stack:
            aload 1
            monitorexit
         4: goto 7
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: aload 1
            monitorexit
         6: athrow
         7: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.management.MemoryManagerImpl.notifInfo:[Ljavax/management/MBeanNotificationInfo;
            areturn
        end local 0 // sun.management.MemoryManagerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/management/MemoryManagerImpl;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any

  public javax.management.ObjectName getObjectName();
    descriptor: ()Ljavax/management/ObjectName;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.management.MemoryManagerImpl this
         0: .line 92
            ldc "java.lang:type=MemoryManager"
            aload 0 /* this */
            invokevirtual sun.management.MemoryManagerImpl.getName:()Ljava/lang/String;
            invokestatic sun.management.Util.newObjectName:(Ljava/lang/String;Ljava/lang/String;)Ljavax/management/ObjectName;
            areturn
        end local 0 // sun.management.MemoryManagerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/management/MemoryManagerImpl;
}
SourceFile: "MemoryManagerImpl.java"