public class org.eclipse.debug.internal.core.MemoryBlockManager implements org.eclipse.debug.core.IMemoryBlockManager, org.eclipse.debug.core.IDebugEventSetListener
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.debug.internal.core.MemoryBlockManager
  super_class: java.lang.Object
{
  private java.util.ArrayList<org.eclipse.debug.core.IMemoryBlockListener> listeners;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/ArrayList<Lorg/eclipse/debug/core/IMemoryBlockListener;>;

  private java.util.ArrayList<org.eclipse.debug.core.model.IMemoryBlock> memoryBlocks;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/ArrayList<Lorg/eclipse/debug/core/model/IMemoryBlock;>;

  private static final int ADDED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final int REMOVED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
         2: .line 44
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
         3: .line 41
            return
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;

  private org.eclipse.debug.internal.core.MemoryBlockManager$MemoryBlockNotifier getMemoryBlockNotifier();
    descriptor: ()Lorg/eclipse/debug/internal/core/MemoryBlockManager$MemoryBlockNotifier;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
         0: .line 106
            new org.eclipse.debug.internal.core.MemoryBlockManager$MemoryBlockNotifier
            dup
            aload 0 /* this */
            invokespecial org.eclipse.debug.internal.core.MemoryBlockManager$MemoryBlockNotifier.<init>:(Lorg/eclipse/debug/internal/core/MemoryBlockManager;)V
            areturn
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;

  public void addMemoryBlocks(org.eclipse.debug.core.model.IMemoryBlock[]);
    descriptor: ([Lorg/eclipse/debug/core/model/IMemoryBlock;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.model.IMemoryBlock[] mem
         0: .line 111
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 112
            return
         2: .line 114
      StackMap locals:
      StackMap stack:
            aload 1 /* mem */
            ifnonnull 5
         3: .line 115
            ldc "Null argument passed into IMemoryBlockManager.addMemoryBlock"
            aconst_null
            invokestatic org.eclipse.debug.core.DebugPlugin.logMessage:(Ljava/lang/String;Ljava/lang/Throwable;)V
         4: .line 116
            return
         5: .line 119
      StackMap locals:
      StackMap stack:
            aload 1 /* mem */
            arraylength
            ifle 17
         6: .line 120
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* newMemoryBlocks */
        start local 2 // java.util.ArrayList newMemoryBlocks
         7: .line 121
            aload 1 /* mem */
            dup
            astore 6
            arraylength
            istore 5
            iconst_0
            istore 4
            goto 15
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlock[] java.util.ArrayList top int int org.eclipse.debug.core.model.IMemoryBlock[]
      StackMap stack:
         8: aload 6
            iload 4
            aaload
            astore 3 /* m */
        start local 3 // org.eclipse.debug.core.model.IMemoryBlock m
         9: .line 123
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            aload 3 /* m */
            invokevirtual java.util.ArrayList.contains:(Ljava/lang/Object;)Z
            ifne 14
        10: .line 124
            aload 2 /* newMemoryBlocks */
            aload 3 /* m */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        11: .line 125
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            aload 3 /* m */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        12: .line 127
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            if_icmpne 14
        13: .line 128
            invokestatic org.eclipse.debug.core.DebugPlugin.getDefault:()Lorg/eclipse/debug/core/DebugPlugin;
            aload 0 /* this */
            invokevirtual org.eclipse.debug.core.DebugPlugin.addDebugEventListener:(Lorg/eclipse/debug/core/IDebugEventSetListener;)V
        end local 3 // org.eclipse.debug.core.model.IMemoryBlock m
        14: .line 121
      StackMap locals:
      StackMap stack:
            iinc 4 1
      StackMap locals:
      StackMap stack:
        15: iload 4
            iload 5
            if_icmplt 8
        16: .line 132
            aload 0 /* this */
            aload 2 /* newMemoryBlocks */
            aload 2 /* newMemoryBlocks */
            invokevirtual java.util.ArrayList.size:()I
            anewarray org.eclipse.debug.core.model.IMemoryBlock
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.eclipse.debug.core.model.IMemoryBlock[]
            iconst_0
            invokevirtual org.eclipse.debug.internal.core.MemoryBlockManager.notifyListeners:([Lorg/eclipse/debug/core/model/IMemoryBlock;I)V
        end local 2 // java.util.ArrayList newMemoryBlocks
        17: .line 134
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlock[]
      StackMap stack:
            return
        end local 1 // org.eclipse.debug.core.model.IMemoryBlock[] mem
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   18     0             this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0   18     1              mem  [Lorg/eclipse/debug/core/model/IMemoryBlock;
            7   17     2  newMemoryBlocks  Ljava/util/ArrayList<Lorg/eclipse/debug/core/model/IMemoryBlock;>;
            9   14     3                m  Lorg/eclipse/debug/core/model/IMemoryBlock;
    MethodParameters:
      Name  Flags
      mem   

  public void removeMemoryBlocks(org.eclipse.debug.core.model.IMemoryBlock[]);
    descriptor: ([Lorg/eclipse/debug/core/model/IMemoryBlock;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.model.IMemoryBlock[] memBlocks
         0: .line 138
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 139
            return
         2: .line 141
      StackMap locals:
      StackMap stack:
            aload 1 /* memBlocks */
            ifnonnull 5
         3: .line 142
            ldc "Null argument passed into IMemoryBlockManager.removeMemoryBlock"
            aconst_null
            invokestatic org.eclipse.debug.core.DebugPlugin.logMessage:(Ljava/lang/String;Ljava/lang/Throwable;)V
         4: .line 143
            return
         5: .line 146
      StackMap locals:
      StackMap stack:
            aload 1 /* memBlocks */
            arraylength
            ifle 19
         6: .line 147
            aload 1 /* memBlocks */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 17
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlock[] top int int org.eclipse.debug.core.model.IMemoryBlock[]
      StackMap stack:
         7: aload 5
            iload 3
            aaload
            astore 2 /* memBlock */
        start local 2 // org.eclipse.debug.core.model.IMemoryBlock memBlock
         8: .line 148
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            aload 2 /* memBlock */
            invokevirtual java.util.ArrayList.remove:(Ljava/lang/Object;)Z
            pop
         9: .line 150
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ifeq 11
        10: .line 151
            invokestatic org.eclipse.debug.core.DebugPlugin.getDefault:()Lorg/eclipse/debug/core/DebugPlugin;
            aload 0 /* this */
            invokevirtual org.eclipse.debug.core.DebugPlugin.removeDebugEventListener:(Lorg/eclipse/debug/core/IDebugEventSetListener;)V
        11: .line 153
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlock[] org.eclipse.debug.core.model.IMemoryBlock int int org.eclipse.debug.core.model.IMemoryBlock[]
      StackMap stack:
            aload 2 /* memBlock */
            instanceof org.eclipse.debug.core.model.IMemoryBlockExtension
            ifeq 16
        12: .line 155
            aload 2 /* memBlock */
            checkcast org.eclipse.debug.core.model.IMemoryBlockExtension
            invokeinterface org.eclipse.debug.core.model.IMemoryBlockExtension.dispose:()V
        13: .line 156
            goto 16
      StackMap locals:
      StackMap stack: org.eclipse.debug.core.DebugException
        14: astore 6 /* e */
        start local 6 // org.eclipse.debug.core.DebugException e
        15: .line 157
            aload 6 /* e */
            invokestatic org.eclipse.debug.core.DebugPlugin.log:(Ljava/lang/Throwable;)V
        end local 6 // org.eclipse.debug.core.DebugException e
        end local 2 // org.eclipse.debug.core.model.IMemoryBlock memBlock
        16: .line 147
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlock[] top int int org.eclipse.debug.core.model.IMemoryBlock[]
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
        17: iload 3
            iload 4
            if_icmplt 7
        18: .line 161
            aload 0 /* this */
            aload 1 /* memBlocks */
            iconst_1
            invokevirtual org.eclipse.debug.internal.core.MemoryBlockManager.notifyListeners:([Lorg/eclipse/debug/core/model/IMemoryBlock;I)V
        19: .line 163
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlock[]
      StackMap stack:
            return
        end local 1 // org.eclipse.debug.core.model.IMemoryBlock[] memBlocks
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0   20     1  memBlocks  [Lorg/eclipse/debug/core/model/IMemoryBlock;
            8   16     2   memBlock  Lorg/eclipse/debug/core/model/IMemoryBlock;
           15   16     6          e  Lorg/eclipse/debug/core/DebugException;
      Exception table:
        from    to  target  type
          12    13      14  Class org.eclipse.debug.core.DebugException
    MethodParameters:
           Name  Flags
      memBlocks  

  public void addListener(org.eclipse.debug.core.IMemoryBlockListener);
    descriptor: (Lorg/eclipse/debug/core/IMemoryBlockListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.IMemoryBlockListener listener
         0: .line 168
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 169
            return
         2: .line 171
      StackMap locals:
      StackMap stack:
            aload 1 /* listener */
            ifnonnull 5
         3: .line 172
            ldc "Null argument passed into IMemoryBlockManager.addListener"
            aconst_null
            invokestatic org.eclipse.debug.core.DebugPlugin.logMessage:(Ljava/lang/String;Ljava/lang/Throwable;)V
         4: .line 173
            return
         5: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
            aload 1 /* listener */
            invokevirtual java.util.ArrayList.contains:(Ljava/lang/Object;)Z
            ifne 7
         6: .line 176
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
            aload 1 /* listener */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         7: .line 178
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.debug.core.IMemoryBlockListener listener
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0    8     1  listener  Lorg/eclipse/debug/core/IMemoryBlockListener;
    MethodParameters:
          Name  Flags
      listener  

  public void removeListener(org.eclipse.debug.core.IMemoryBlockListener);
    descriptor: (Lorg/eclipse/debug/core/IMemoryBlockListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.IMemoryBlockListener listener
         0: .line 183
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 184
            return
         2: .line 186
      StackMap locals:
      StackMap stack:
            aload 1 /* listener */
            ifnonnull 5
         3: .line 187
            ldc "Null argument passed into IMemoryBlockManager.removeListener"
            aconst_null
            invokestatic org.eclipse.debug.core.DebugPlugin.logMessage:(Ljava/lang/String;Ljava/lang/Throwable;)V
         4: .line 188
            return
         5: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
            aload 1 /* listener */
            invokevirtual java.util.ArrayList.contains:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 191
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
            aload 1 /* listener */
            invokevirtual java.util.ArrayList.remove:(Ljava/lang/Object;)Z
            pop
         7: .line 193
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.debug.core.IMemoryBlockListener listener
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0    8     1  listener  Lorg/eclipse/debug/core/IMemoryBlockListener;
    MethodParameters:
          Name  Flags
      listener  

  public org.eclipse.debug.core.model.IMemoryBlock[] getMemoryBlocks();
    descriptor: ()[Lorg/eclipse/debug/core/model/IMemoryBlock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
         0: .line 197
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            anewarray org.eclipse.debug.core.model.IMemoryBlock
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.eclipse.debug.core.model.IMemoryBlock[]
            areturn
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;

  public org.eclipse.debug.core.model.IMemoryBlock[] getMemoryBlocks(org.eclipse.debug.core.model.IDebugTarget);
    descriptor: (Lorg/eclipse/debug/core/model/IDebugTarget;)[Lorg/eclipse/debug/core/model/IMemoryBlock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.model.IDebugTarget debugTarget
         0: .line 202
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* memoryBlocksList */
        start local 2 // java.util.ArrayList memoryBlocksList
         1: .line 203
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IDebugTarget java.util.ArrayList top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.debug.core.model.IMemoryBlock
            astore 3 /* block */
        start local 3 // org.eclipse.debug.core.model.IMemoryBlock block
         3: .line 204
            aload 3 /* block */
            invokeinterface org.eclipse.debug.core.model.IMemoryBlock.getDebugTarget:()Lorg/eclipse/debug/core/model/IDebugTarget;
            aload 1 /* debugTarget */
            if_acmpne 5
         4: .line 205
            aload 2 /* memoryBlocksList */
            aload 3 /* block */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // org.eclipse.debug.core.model.IMemoryBlock block
         5: .line 203
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 208
            aload 2 /* memoryBlocksList */
            aload 2 /* memoryBlocksList */
            invokevirtual java.util.ArrayList.size:()I
            anewarray org.eclipse.debug.core.model.IMemoryBlock
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.eclipse.debug.core.model.IMemoryBlock[]
            areturn
        end local 2 // java.util.ArrayList memoryBlocksList
        end local 1 // org.eclipse.debug.core.model.IDebugTarget debugTarget
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    7     0              this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0    7     1       debugTarget  Lorg/eclipse/debug/core/model/IDebugTarget;
            1    7     2  memoryBlocksList  Ljava/util/ArrayList<Lorg/eclipse/debug/core/model/IMemoryBlock;>;
            3    5     3             block  Lorg/eclipse/debug/core/model/IMemoryBlock;
    MethodParameters:
             Name  Flags
      debugTarget  

  public org.eclipse.debug.core.model.IMemoryBlock[] getMemoryBlocks(org.eclipse.debug.core.model.IMemoryBlockRetrieval);
    descriptor: (Lorg/eclipse/debug/core/model/IMemoryBlockRetrieval;)[Lorg/eclipse/debug/core/model/IMemoryBlock;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.model.IMemoryBlockRetrieval retrieve
         0: .line 213
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* memoryBlocksList */
        start local 2 // java.util.ArrayList memoryBlocksList
         1: .line 214
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 4
            goto 12
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlockRetrieval java.util.ArrayList top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.debug.core.model.IMemoryBlock
            astore 3 /* block */
        start local 3 // org.eclipse.debug.core.model.IMemoryBlock block
         3: .line 215
            aload 3 /* block */
            instanceof org.eclipse.debug.core.model.IMemoryBlockExtension
            ifeq 7
         4: .line 216
            aload 3 /* block */
            checkcast org.eclipse.debug.core.model.IMemoryBlockExtension
            invokeinterface org.eclipse.debug.core.model.IMemoryBlockExtension.getMemoryBlockRetrieval:()Lorg/eclipse/debug/core/model/IMemoryBlockRetrieval;
            aload 1 /* retrieve */
            if_acmpne 12
         5: .line 217
            aload 2 /* memoryBlocksList */
            aload 3 /* block */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         6: .line 219
            goto 12
         7: .line 221
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlockRetrieval java.util.ArrayList org.eclipse.debug.core.model.IMemoryBlock java.util.Iterator
      StackMap stack:
            aload 3 /* block */
            ldc Lorg/eclipse/debug/core/model/IMemoryBlockRetrieval;
            invokeinterface org.eclipse.debug.core.model.IMemoryBlock.getAdapter:(Ljava/lang/Class;)Ljava/lang/Object;
            checkcast org.eclipse.debug.core.model.IMemoryBlockRetrieval
            astore 5 /* mbRetrieval */
        start local 5 // org.eclipse.debug.core.model.IMemoryBlockRetrieval mbRetrieval
         8: .line 223
            aload 5 /* mbRetrieval */
            ifnonnull 10
         9: .line 224
            aload 3 /* block */
            invokeinterface org.eclipse.debug.core.model.IMemoryBlock.getDebugTarget:()Lorg/eclipse/debug/core/model/IDebugTarget;
            astore 5 /* mbRetrieval */
        10: .line 226
      StackMap locals: org.eclipse.debug.core.model.IMemoryBlockRetrieval
      StackMap stack:
            aload 5 /* mbRetrieval */
            aload 1 /* retrieve */
            if_acmpne 12
        11: .line 227
            aload 2 /* memoryBlocksList */
            aload 3 /* block */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // org.eclipse.debug.core.model.IMemoryBlockRetrieval mbRetrieval
        end local 3 // org.eclipse.debug.core.model.IMemoryBlock block
        12: .line 214
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.model.IMemoryBlockRetrieval java.util.ArrayList top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
        13: .line 231
            aload 2 /* memoryBlocksList */
            aload 2 /* memoryBlocksList */
            invokevirtual java.util.ArrayList.size:()I
            anewarray org.eclipse.debug.core.model.IMemoryBlock
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.eclipse.debug.core.model.IMemoryBlock[]
            areturn
        end local 2 // java.util.ArrayList memoryBlocksList
        end local 1 // org.eclipse.debug.core.model.IMemoryBlockRetrieval retrieve
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   14     0              this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0   14     1          retrieve  Lorg/eclipse/debug/core/model/IMemoryBlockRetrieval;
            1   14     2  memoryBlocksList  Ljava/util/ArrayList<Lorg/eclipse/debug/core/model/IMemoryBlock;>;
            3   12     3             block  Lorg/eclipse/debug/core/model/IMemoryBlock;
            8   12     5       mbRetrieval  Lorg/eclipse/debug/core/model/IMemoryBlockRetrieval;
    MethodParameters:
          Name  Flags
      retrieve  

  private void notifyListeners(org.eclipse.debug.core.model.IMemoryBlock[], int);
    descriptor: ([Lorg/eclipse/debug/core/model/IMemoryBlock;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.model.IMemoryBlock[] memBlocks
        start local 2 // int event
         0: .line 240
            aload 0 /* this */
            invokevirtual org.eclipse.debug.internal.core.MemoryBlockManager.getMemoryBlockNotifier:()Lorg/eclipse/debug/internal/core/MemoryBlockManager$MemoryBlockNotifier;
            aload 1 /* memBlocks */
            iload 2 /* event */
            invokevirtual org.eclipse.debug.internal.core.MemoryBlockManager$MemoryBlockNotifier.notify:([Lorg/eclipse/debug/core/model/IMemoryBlock;I)V
         1: .line 241
            return
        end local 2 // int event
        end local 1 // org.eclipse.debug.core.model.IMemoryBlock[] memBlocks
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0    2     1  memBlocks  [Lorg/eclipse/debug/core/model/IMemoryBlock;
            0    2     2      event  I
    MethodParameters:
           Name  Flags
      memBlocks  
      event      

  public void handleDebugEvents(org.eclipse.debug.core.DebugEvent[]);
    descriptor: ([Lorg/eclipse/debug/core/DebugEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.DebugEvent[] events
         0: .line 245
            aload 1 /* events */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: org.eclipse.debug.internal.core.MemoryBlockManager org.eclipse.debug.core.DebugEvent[] top int int org.eclipse.debug.core.DebugEvent[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* event */
        start local 2 // org.eclipse.debug.core.DebugEvent event
         2: .line 246
            aload 0 /* this */
            aload 2 /* event */
            invokevirtual org.eclipse.debug.internal.core.MemoryBlockManager.handleDebugEvent:(Lorg/eclipse/debug/core/DebugEvent;)V
        end local 2 // org.eclipse.debug.core.DebugEvent event
         3: .line 245
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 248
            return
        end local 1 // org.eclipse.debug.core.DebugEvent[] events
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0    6     1  events  [Lorg/eclipse/debug/core/DebugEvent;
            2    3     2   event  Lorg/eclipse/debug/core/DebugEvent;
    MethodParameters:
        Name  Flags
      events  

  public void handleDebugEvent(org.eclipse.debug.core.DebugEvent);
    descriptor: (Lorg/eclipse/debug/core/DebugEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
        start local 1 // org.eclipse.debug.core.DebugEvent event
         0: .line 255
            aload 1 /* event */
            invokevirtual org.eclipse.debug.core.DebugEvent.getSource:()Ljava/lang/Object;
            astore 2 /* obj */
        start local 2 // java.lang.Object obj
         1: .line 256
            aconst_null
            astore 3 /* dt */
        start local 3 // org.eclipse.debug.core.model.IDebugTarget dt
         2: .line 258
            aload 1 /* event */
            invokevirtual org.eclipse.debug.core.DebugEvent.getKind:()I
            bipush 8
            if_icmpne 7
         3: .line 261
            aload 2 /* obj */
            instanceof org.eclipse.debug.core.model.IDebugTarget
            ifeq 7
         4: .line 262
            aload 2 /* obj */
            checkcast org.eclipse.debug.core.model.IDebugTarget
            astore 3 /* dt */
         5: .line 265
            aload 0 /* this */
            aload 3 /* dt */
            invokevirtual org.eclipse.debug.internal.core.MemoryBlockManager.getMemoryBlocks:(Lorg/eclipse/debug/core/model/IDebugTarget;)[Lorg/eclipse/debug/core/model/IMemoryBlock;
            astore 4 /* deletedMemoryBlocks */
        start local 4 // org.eclipse.debug.core.model.IMemoryBlock[] deletedMemoryBlocks
         6: .line 266
            aload 0 /* this */
            aload 4 /* deletedMemoryBlocks */
            invokevirtual org.eclipse.debug.internal.core.MemoryBlockManager.removeMemoryBlocks:([Lorg/eclipse/debug/core/model/IMemoryBlock;)V
        end local 4 // org.eclipse.debug.core.model.IMemoryBlock[] deletedMemoryBlocks
         7: .line 269
      StackMap locals: java.lang.Object org.eclipse.debug.core.model.IDebugTarget
      StackMap stack:
            return
        end local 3 // org.eclipse.debug.core.model.IDebugTarget dt
        end local 2 // java.lang.Object obj
        end local 1 // org.eclipse.debug.core.DebugEvent event
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    8     0                 this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
            0    8     1                event  Lorg/eclipse/debug/core/DebugEvent;
            1    8     2                  obj  Ljava/lang/Object;
            2    8     3                   dt  Lorg/eclipse/debug/core/model/IDebugTarget;
            6    7     4  deletedMemoryBlocks  [Lorg/eclipse/debug/core/model/IMemoryBlock;
    MethodParameters:
       Name  Flags
      event  

  public void shutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
         0: .line 275
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
            ifnull 3
         1: .line 276
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         2: .line 277
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.debug.internal.core.MemoryBlockManager.listeners:Ljava/util/ArrayList;
         3: .line 280
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            ifnull 6
         4: .line 281
            aload 0 /* this */
            getfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         5: .line 282
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.debug.internal.core.MemoryBlockManager.memoryBlocks:Ljava/util/ArrayList;
         6: .line 284
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.debug.internal.core.MemoryBlockManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/debug/internal/core/MemoryBlockManager;
}
SourceFile: "MemoryBlockManager.java"
NestMembers:
  org.eclipse.debug.internal.core.MemoryBlockManager$MemoryBlockNotifier
InnerClasses:
  MemoryBlockNotifier = org.eclipse.debug.internal.core.MemoryBlockManager$MemoryBlockNotifier of org.eclipse.debug.internal.core.MemoryBlockManager