public class android.content.UndoManager
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.content.UndoManager
  super_class: java.lang.Object
{
  private final android.util.ArrayMap<java.lang.String, android.content.UndoOwner> mOwners;
    descriptor: Landroid/util/ArrayMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Landroid/util/ArrayMap<Ljava/lang/String;Landroid/content/UndoOwner;>;

  private final java.util.ArrayList<android.content.UndoManager$UndoState> mUndos;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Landroid/content/UndoManager$UndoState;>;

  private final java.util.ArrayList<android.content.UndoManager$UndoState> mRedos;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Landroid/content/UndoManager$UndoState;>;

  private int mUpdateCount;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mHistorySize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private android.content.UndoManager$UndoState mWorking;
    descriptor: Landroid/content/UndoManager$UndoState;
    flags: (0x0002) ACC_PRIVATE

  private int mCommitId;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean mInUndo;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mMerged;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int mStateSeq;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mNextSavedIdx;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private android.content.UndoOwner[] mStateOwners;
    descriptor: [Landroid/content/UndoOwner;
    flags: (0x0002) ACC_PRIVATE

  public static final int MERGE_MODE_NONE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int MERGE_MODE_UNIQUE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int MERGE_MODE_ANY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // android.content.UndoManager this
         0: .line 56
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
         2: .line 59
            new android.util.ArrayMap
            dup
            iconst_1
            invokespecial android.util.ArrayMap.<init>:(I)V
            putfield android.content.UndoManager.mOwners:Landroid/util/ArrayMap;
         3: .line 60
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
         4: .line 61
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
         5: .line 63
            aload 0 /* this */
            bipush 20
            putfield android.content.UndoManager.mHistorySize:I
         6: .line 65
            aload 0 /* this */
            iconst_1
            putfield android.content.UndoManager.mCommitId:I
         7: .line 56
            return
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Landroid/content/UndoManager;

  public android.content.UndoOwner getOwner(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Landroid/content/UndoOwner;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // java.lang.String tag
        start local 2 // java.lang.Object data
         0: .line 90
            aload 1 /* tag */
            ifnonnull 2
         1: .line 91
            new java.lang.NullPointerException
            dup
            ldc "tag can't be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 2 /* data */
            ifnonnull 4
         3: .line 94
            new java.lang.NullPointerException
            dup
            ldc "data can't be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mOwners:Landroid/util/ArrayMap;
            aload 1 /* tag */
            invokevirtual android.util.ArrayMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast android.content.UndoOwner
            astore 3 /* owner */
        start local 3 // android.content.UndoOwner owner
         5: .line 97
            aload 3 /* owner */
            ifnull 13
         6: .line 98
            aload 3 /* owner */
            getfield android.content.UndoOwner.mData:Ljava/lang/Object;
            aload 2 /* data */
            if_acmpeq 12
         7: .line 99
            aload 3 /* owner */
            getfield android.content.UndoOwner.mData:Ljava/lang/Object;
            ifnull 11
         8: .line 100
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Owner "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* owner */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " already exists with data "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         9: .line 101
            aload 3 /* owner */
            getfield android.content.UndoOwner.mData:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " but giving different data "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* data */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 100
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 103
      StackMap locals: android.content.UndoOwner
      StackMap stack:
            aload 3 /* owner */
            aload 2 /* data */
            putfield android.content.UndoOwner.mData:Ljava/lang/Object;
        12: .line 105
      StackMap locals:
      StackMap stack:
            aload 3 /* owner */
            areturn
        13: .line 108
      StackMap locals:
      StackMap stack:
            new android.content.UndoOwner
            dup
            aload 1 /* tag */
            aload 0 /* this */
            invokespecial android.content.UndoOwner.<init>:(Ljava/lang/String;Landroid/content/UndoManager;)V
            astore 3 /* owner */
        14: .line 109
            aload 3 /* owner */
            aload 2 /* data */
            putfield android.content.UndoOwner.mData:Ljava/lang/Object;
        15: .line 110
            aload 0 /* this */
            getfield android.content.UndoManager.mOwners:Landroid/util/ArrayMap;
            aload 1 /* tag */
            aload 3 /* owner */
            invokevirtual android.util.ArrayMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        16: .line 111
            aload 3 /* owner */
            areturn
        end local 3 // android.content.UndoOwner owner
        end local 2 // java.lang.Object data
        end local 1 // java.lang.String tag
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Landroid/content/UndoManager;
            0   17     1    tag  Ljava/lang/String;
            0   17     2   data  Ljava/lang/Object;
            5   17     3  owner  Landroid/content/UndoOwner;
    MethodParameters:
      Name  Flags
      tag   
      data  

  void removeOwner(android.content.UndoOwner);
    descriptor: (Landroid/content/UndoOwner;)V
    flags: (0x0000) 
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner owner
         0: .line 119
            return
        end local 1 // android.content.UndoOwner owner
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Landroid/content/UndoManager;
            0    1     1  owner  Landroid/content/UndoOwner;
    MethodParameters:
       Name  Flags
      owner  

  public void saveInstanceState(android.os.Parcel);
    descriptor: (Landroid/os/Parcel;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.os.Parcel p
         0: .line 126
            aload 0 /* this */
            getfield android.content.UndoManager.mUpdateCount:I
            ifle 2
         1: .line 127
            new java.lang.IllegalStateException
            dup
            ldc "Can't save state while updating"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield android.content.UndoManager.mStateSeq:I
            iconst_1
            iadd
            putfield android.content.UndoManager.mStateSeq:I
         3: .line 130
            aload 0 /* this */
            getfield android.content.UndoManager.mStateSeq:I
            ifgt 5
         4: .line 131
            aload 0 /* this */
            iconst_0
            putfield android.content.UndoManager.mStateSeq:I
         5: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield android.content.UndoManager.mNextSavedIdx:I
         6: .line 134
            aload 1 /* p */
            aload 0 /* this */
            getfield android.content.UndoManager.mHistorySize:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         7: .line 135
            aload 1 /* p */
            aload 0 /* this */
            getfield android.content.UndoManager.mOwners:Landroid/util/ArrayMap;
            invokevirtual android.util.ArrayMap.size:()I
            invokevirtual android.os.Parcel.writeInt:(I)V
         8: .line 138
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 2 /* i */
        start local 2 // int i
         9: .line 139
            goto 13
        10: .line 140
      StackMap locals: int
      StackMap stack:
            aload 1 /* p */
            iconst_1
            invokevirtual android.os.Parcel.writeInt:(I)V
        11: .line 141
            iinc 2 /* i */ -1
        12: .line 142
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            iload 2 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            aload 1 /* p */
            invokevirtual android.content.UndoManager$UndoState.writeToParcel:(Landroid/os/Parcel;)V
        13: .line 139
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            ifgt 10
        14: .line 144
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 2 /* i */
        15: .line 145
            goto 19
        16: .line 146
      StackMap locals:
      StackMap stack:
            aload 1 /* p */
            iconst_2
            invokevirtual android.os.Parcel.writeInt:(I)V
        17: .line 147
            iinc 2 /* i */ -1
        18: .line 148
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            iload 2 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            aload 1 /* p */
            invokevirtual android.content.UndoManager$UndoState.writeToParcel:(Landroid/os/Parcel;)V
        19: .line 145
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            ifgt 16
        20: .line 150
            aload 1 /* p */
            iconst_0
            invokevirtual android.os.Parcel.writeInt:(I)V
        21: .line 151
            return
        end local 2 // int i
        end local 1 // android.os.Parcel p
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0  this  Landroid/content/UndoManager;
            0   22     1     p  Landroid/os/Parcel;
            9   22     2     i  I
    MethodParameters:
      Name  Flags
      p     

  void saveOwner(android.content.UndoOwner, android.os.Parcel);
    descriptor: (Landroid/content/UndoOwner;Landroid/os/Parcel;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner owner
        start local 2 // android.os.Parcel out
         0: .line 154
            aload 1 /* owner */
            getfield android.content.UndoOwner.mStateSeq:I
            aload 0 /* this */
            getfield android.content.UndoManager.mStateSeq:I
            if_icmpne 3
         1: .line 155
            aload 2 /* out */
            aload 1 /* owner */
            getfield android.content.UndoOwner.mSavedIdx:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         2: .line 156
            goto 9
         3: .line 157
      StackMap locals:
      StackMap stack:
            aload 1 /* owner */
            aload 0 /* this */
            getfield android.content.UndoManager.mStateSeq:I
            putfield android.content.UndoOwner.mStateSeq:I
         4: .line 158
            aload 1 /* owner */
            aload 0 /* this */
            getfield android.content.UndoManager.mNextSavedIdx:I
            putfield android.content.UndoOwner.mSavedIdx:I
         5: .line 159
            aload 2 /* out */
            aload 1 /* owner */
            getfield android.content.UndoOwner.mSavedIdx:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         6: .line 160
            aload 2 /* out */
            aload 1 /* owner */
            getfield android.content.UndoOwner.mTag:Ljava/lang/String;
            invokevirtual android.os.Parcel.writeString:(Ljava/lang/String;)V
         7: .line 161
            aload 2 /* out */
            aload 1 /* owner */
            getfield android.content.UndoOwner.mOpCount:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         8: .line 162
            aload 0 /* this */
            dup
            getfield android.content.UndoManager.mNextSavedIdx:I
            iconst_1
            iadd
            putfield android.content.UndoManager.mNextSavedIdx:I
         9: .line 164
      StackMap locals:
      StackMap stack:
            return
        end local 2 // android.os.Parcel out
        end local 1 // android.content.UndoOwner owner
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Landroid/content/UndoManager;
            0   10     1  owner  Landroid/content/UndoOwner;
            0   10     2    out  Landroid/os/Parcel;
    MethodParameters:
       Name  Flags
      owner  
      out    

  public void restoreInstanceState(android.os.Parcel, java.lang.ClassLoader);
    descriptor: (Landroid/os/Parcel;Ljava/lang/ClassLoader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.os.Parcel p
        start local 2 // java.lang.ClassLoader loader
         0: .line 174
            aload 0 /* this */
            getfield android.content.UndoManager.mUpdateCount:I
            ifle 2
         1: .line 175
            new java.lang.IllegalStateException
            dup
            ldc "Can't save state while updating"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            iconst_m1
            invokevirtual android.content.UndoManager.forgetUndos:([Landroid/content/UndoOwner;I)I
            pop
         3: .line 178
            aload 0 /* this */
            aconst_null
            iconst_m1
            invokevirtual android.content.UndoManager.forgetRedos:([Landroid/content/UndoOwner;I)I
            pop
         4: .line 179
            aload 0 /* this */
            aload 1 /* p */
            invokevirtual android.os.Parcel.readInt:()I
            putfield android.content.UndoManager.mHistorySize:I
         5: .line 180
            aload 0 /* this */
            aload 1 /* p */
            invokevirtual android.os.Parcel.readInt:()I
            anewarray android.content.UndoOwner
            putfield android.content.UndoManager.mStateOwners:[Landroid/content/UndoOwner;
         6: .line 183
            goto 12
        start local 3 // int stype
         7: .line 184
      StackMap locals: int
      StackMap stack:
            new android.content.UndoManager$UndoState
            dup
            aload 0 /* this */
            aload 1 /* p */
            aload 2 /* loader */
            invokespecial android.content.UndoManager$UndoState.<init>:(Landroid/content/UndoManager;Landroid/os/Parcel;Ljava/lang/ClassLoader;)V
            astore 4 /* ustate */
        start local 4 // android.content.UndoManager$UndoState ustate
         8: .line 185
            iload 3 /* stype */
            iconst_1
            if_icmpne 11
         9: .line 186
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            iconst_0
            aload 4 /* ustate */
            invokevirtual java.util.ArrayList.add:(ILjava/lang/Object;)V
        10: .line 187
            goto 12
        11: .line 188
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            iconst_0
            aload 4 /* ustate */
            invokevirtual java.util.ArrayList.add:(ILjava/lang/Object;)V
        end local 4 // android.content.UndoManager$UndoState ustate
        end local 3 // int stype
        12: .line 183
      StackMap locals:
      StackMap stack:
            aload 1 /* p */
            invokevirtual android.os.Parcel.readInt:()I
            dup
            istore 3 /* stype */
        start local 3 // int stype
        13: ifne 7
        14: .line 191
            return
        end local 3 // int stype
        end local 2 // java.lang.ClassLoader loader
        end local 1 // android.os.Parcel p
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Landroid/content/UndoManager;
            0   15     1       p  Landroid/os/Parcel;
            0   15     2  loader  Ljava/lang/ClassLoader;
            7   12     3   stype  I
           13   15     3   stype  I
            8   12     4  ustate  Landroid/content/UndoManager$UndoState;
    MethodParameters:
        Name  Flags
      p       
      loader  

  android.content.UndoOwner restoreOwner(android.os.Parcel);
    descriptor: (Landroid/os/Parcel;)Landroid/content/UndoOwner;
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.os.Parcel in
         0: .line 194
            aload 1 /* in */
            invokevirtual android.os.Parcel.readInt:()I
            istore 2 /* idx */
        start local 2 // int idx
         1: .line 195
            aload 0 /* this */
            getfield android.content.UndoManager.mStateOwners:[Landroid/content/UndoOwner;
            iload 2 /* idx */
            aaload
            astore 3 /* owner */
        start local 3 // android.content.UndoOwner owner
         2: .line 196
            aload 3 /* owner */
            ifnonnull 9
         3: .line 197
            aload 1 /* in */
            invokevirtual android.os.Parcel.readString:()Ljava/lang/String;
            astore 4 /* tag */
        start local 4 // java.lang.String tag
         4: .line 198
            aload 1 /* in */
            invokevirtual android.os.Parcel.readInt:()I
            istore 5 /* opCount */
        start local 5 // int opCount
         5: .line 199
            new android.content.UndoOwner
            dup
            aload 4 /* tag */
            aload 0 /* this */
            invokespecial android.content.UndoOwner.<init>:(Ljava/lang/String;Landroid/content/UndoManager;)V
            astore 3 /* owner */
         6: .line 200
            aload 3 /* owner */
            iload 5 /* opCount */
            putfield android.content.UndoOwner.mOpCount:I
         7: .line 201
            aload 0 /* this */
            getfield android.content.UndoManager.mStateOwners:[Landroid/content/UndoOwner;
            iload 2 /* idx */
            aload 3 /* owner */
            aastore
         8: .line 202
            aload 0 /* this */
            getfield android.content.UndoManager.mOwners:Landroid/util/ArrayMap;
            aload 4 /* tag */
            aload 3 /* owner */
            invokevirtual android.util.ArrayMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 5 // int opCount
        end local 4 // java.lang.String tag
         9: .line 204
      StackMap locals: int android.content.UndoOwner
      StackMap stack:
            aload 3 /* owner */
            areturn
        end local 3 // android.content.UndoOwner owner
        end local 2 // int idx
        end local 1 // android.os.Parcel in
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Landroid/content/UndoManager;
            0   10     1       in  Landroid/os/Parcel;
            1   10     2      idx  I
            2   10     3    owner  Landroid/content/UndoOwner;
            4    9     4      tag  Ljava/lang/String;
            5    9     5  opCount  I
    MethodParameters:
      Name  Flags
      in    

  public void setHistorySize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // int size
         0: .line 211
            aload 0 /* this */
            iload 1 /* size */
            putfield android.content.UndoManager.mHistorySize:I
         1: .line 212
            aload 0 /* this */
            getfield android.content.UndoManager.mHistorySize:I
            iflt 3
            aload 0 /* this */
            aconst_null
            invokevirtual android.content.UndoManager.countUndos:([Landroid/content/UndoOwner;)I
            aload 0 /* this */
            getfield android.content.UndoManager.mHistorySize:I
            if_icmple 3
         2: .line 213
            aload 0 /* this */
            aconst_null
            aload 0 /* this */
            aconst_null
            invokevirtual android.content.UndoManager.countUndos:([Landroid/content/UndoOwner;)I
            aload 0 /* this */
            getfield android.content.UndoManager.mHistorySize:I
            isub
            invokevirtual android.content.UndoManager.forgetUndos:([Landroid/content/UndoOwner;I)I
            pop
         3: .line 215
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/content/UndoManager;
            0    4     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public int getHistorySize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.content.UndoManager this
         0: .line 221
            aload 0 /* this */
            getfield android.content.UndoManager.mHistorySize:I
            ireturn
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/content/UndoManager;

  public int undo(android.content.UndoOwner[], int);
    descriptor: ([Landroid/content/UndoOwner;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
        start local 2 // int count
         0: .line 234
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnull 2
         1: .line 235
            new java.lang.IllegalStateException
            dup
            ldc "Can't be called during an update"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 238
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* num */
        start local 3 // int num
         3: .line 239
            iconst_m1
            istore 4 /* i */
        start local 4 // int i
         4: .line 241
            aload 0 /* this */
            iconst_1
            putfield android.content.UndoManager.mInUndo:Z
         5: .line 243
            aload 0 /* this */
            aconst_null
            invokevirtual android.content.UndoManager.getTopUndo:([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
            astore 5 /* us */
        start local 5 // android.content.UndoManager$UndoState us
         6: .line 244
            aload 5 /* us */
            ifnull 14
         7: .line 245
            aload 5 /* us */
            invokevirtual android.content.UndoManager$UndoState.makeExecuted:()V
         8: .line 248
            goto 14
         9: .line 249
      StackMap locals: int int android.content.UndoManager$UndoState
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            iload 4 /* i */
            invokevirtual java.util.ArrayList.remove:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            astore 6 /* state */
        start local 6 // android.content.UndoManager$UndoState state
        10: .line 250
            aload 6 /* state */
            invokevirtual android.content.UndoManager$UndoState.undo:()V
        11: .line 251
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            aload 6 /* state */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        12: .line 252
            iinc 2 /* count */ -1
        13: .line 253
            iinc 3 /* num */ 1
        end local 6 // android.content.UndoManager$UndoState state
        14: .line 248
      StackMap locals:
      StackMap stack:
            iload 2 /* count */
            ifle 15
            aload 0 /* this */
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            aload 1 /* owners */
            iload 4 /* i */
            invokevirtual android.content.UndoManager.findPrevState:(Ljava/util/ArrayList;[Landroid/content/UndoOwner;I)I
            dup
            istore 4 /* i */
            ifge 9
        15: .line 256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield android.content.UndoManager.mInUndo:Z
        16: .line 258
            iload 3 /* num */
            ireturn
        end local 5 // android.content.UndoManager$UndoState us
        end local 4 // int i
        end local 3 // int num
        end local 2 // int count
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Landroid/content/UndoManager;
            0   17     1  owners  [Landroid/content/UndoOwner;
            0   17     2   count  I
            3   17     3     num  I
            4   17     4       i  I
            6   17     5      us  Landroid/content/UndoManager$UndoState;
           10   14     6   state  Landroid/content/UndoManager$UndoState;
    MethodParameters:
        Name  Flags
      owners  
      count   

  public int redo(android.content.UndoOwner[], int);
    descriptor: ([Landroid/content/UndoOwner;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
        start local 2 // int count
         0: .line 271
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnull 2
         1: .line 272
            new java.lang.IllegalStateException
            dup
            ldc "Can't be called during an update"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 275
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* num */
        start local 3 // int num
         3: .line 276
            iconst_m1
            istore 4 /* i */
        start local 4 // int i
         4: .line 278
            aload 0 /* this */
            iconst_1
            putfield android.content.UndoManager.mInUndo:Z
         5: .line 280
            goto 11
         6: .line 281
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            iload 4 /* i */
            invokevirtual java.util.ArrayList.remove:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            astore 5 /* state */
        start local 5 // android.content.UndoManager$UndoState state
         7: .line 282
            aload 5 /* state */
            invokevirtual android.content.UndoManager$UndoState.redo:()V
         8: .line 283
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            aload 5 /* state */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         9: .line 284
            iinc 2 /* count */ -1
        10: .line 285
            iinc 3 /* num */ 1
        end local 5 // android.content.UndoManager$UndoState state
        11: .line 280
      StackMap locals:
      StackMap stack:
            iload 2 /* count */
            ifle 12
            aload 0 /* this */
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            aload 1 /* owners */
            iload 4 /* i */
            invokevirtual android.content.UndoManager.findPrevState:(Ljava/util/ArrayList;[Landroid/content/UndoOwner;I)I
            dup
            istore 4 /* i */
            ifge 6
        12: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield android.content.UndoManager.mInUndo:Z
        13: .line 290
            iload 3 /* num */
            ireturn
        end local 4 // int i
        end local 3 // int num
        end local 2 // int count
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Landroid/content/UndoManager;
            0   14     1  owners  [Landroid/content/UndoOwner;
            0   14     2   count  I
            3   14     3     num  I
            4   14     4       i  I
            7   11     5   state  Landroid/content/UndoManager$UndoState;
    MethodParameters:
        Name  Flags
      owners  
      count   

  public boolean isInUndo();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.content.UndoManager this
         0: .line 299
            aload 0 /* this */
            getfield android.content.UndoManager.mInUndo:Z
            ireturn
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/content/UndoManager;

  public int forgetUndos(android.content.UndoOwner[], int);
    descriptor: ([Landroid/content/UndoOwner;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
        start local 2 // int count
         0: .line 303
            iload 2 /* count */
            ifge 2
         1: .line 304
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 2 /* count */
         2: .line 307
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* removed */
        start local 3 // int removed
         3: .line 308
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: .line 309
            goto 12
         5: .line 310
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            astore 5 /* state */
        start local 5 // android.content.UndoManager$UndoState state
         6: .line 311
            iload 2 /* count */
            ifle 11
            aload 0 /* this */
            aload 5 /* state */
            aload 1 /* owners */
            invokevirtual android.content.UndoManager.matchOwners:(Landroid/content/UndoManager$UndoState;[Landroid/content/UndoOwner;)Z
            ifeq 11
         7: .line 312
            aload 5 /* state */
            invokevirtual android.content.UndoManager$UndoState.destroy:()V
         8: .line 313
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            iload 4 /* i */
            invokevirtual java.util.ArrayList.remove:(I)Ljava/lang/Object;
            pop
         9: .line 314
            iinc 3 /* removed */ 1
        10: .line 315
            goto 12
        11: .line 316
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            iinc 4 /* i */ 1
        end local 5 // android.content.UndoManager$UndoState state
        12: .line 309
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmpge 13
            iload 3 /* removed */
            iload 2 /* count */
            if_icmplt 5
        13: .line 320
      StackMap locals:
      StackMap stack:
            iload 3 /* removed */
            ireturn
        end local 4 // int i
        end local 3 // int removed
        end local 2 // int count
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Landroid/content/UndoManager;
            0   14     1   owners  [Landroid/content/UndoOwner;
            0   14     2    count  I
            3   14     3  removed  I
            4   14     4        i  I
            6   12     5    state  Landroid/content/UndoManager$UndoState;
    MethodParameters:
        Name  Flags
      owners  
      count   

  public int forgetRedos(android.content.UndoOwner[], int);
    descriptor: ([Landroid/content/UndoOwner;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
        start local 2 // int count
         0: .line 324
            iload 2 /* count */
            ifge 2
         1: .line 325
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 2 /* count */
         2: .line 328
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* removed */
        start local 3 // int removed
         3: .line 329
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: .line 330
            goto 12
         5: .line 331
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            astore 5 /* state */
        start local 5 // android.content.UndoManager$UndoState state
         6: .line 332
            iload 2 /* count */
            ifle 11
            aload 0 /* this */
            aload 5 /* state */
            aload 1 /* owners */
            invokevirtual android.content.UndoManager.matchOwners:(Landroid/content/UndoManager$UndoState;[Landroid/content/UndoOwner;)Z
            ifeq 11
         7: .line 333
            aload 5 /* state */
            invokevirtual android.content.UndoManager$UndoState.destroy:()V
         8: .line 334
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            iload 4 /* i */
            invokevirtual java.util.ArrayList.remove:(I)Ljava/lang/Object;
            pop
         9: .line 335
            iinc 3 /* removed */ 1
        10: .line 336
            goto 12
        11: .line 337
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            iinc 4 /* i */ 1
        end local 5 // android.content.UndoManager$UndoState state
        12: .line 330
      StackMap locals:
      StackMap stack:
            iload 4 /* i */
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            if_icmpge 13
            iload 3 /* removed */
            iload 2 /* count */
            if_icmplt 5
        13: .line 341
      StackMap locals:
      StackMap stack:
            iload 3 /* removed */
            ireturn
        end local 4 // int i
        end local 3 // int removed
        end local 2 // int count
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Landroid/content/UndoManager;
            0   14     1   owners  [Landroid/content/UndoOwner;
            0   14     2    count  I
            3   14     3  removed  I
            4   14     4        i  I
            6   12     5    state  Landroid/content/UndoManager$UndoState;
    MethodParameters:
        Name  Flags
      owners  
      count   

  public int countUndos(android.content.UndoOwner[]);
    descriptor: ([Landroid/content/UndoOwner;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
         0: .line 350
            aload 1 /* owners */
            ifnonnull 2
         1: .line 351
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
         2: .line 354
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         3: .line 355
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: .line 356
            goto 7
         5: .line 357
      StackMap locals: int int
      StackMap stack:
            iinc 2 /* count */ 1
         6: .line 358
            iinc 3 /* i */ 1
         7: .line 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            aload 1 /* owners */
            iload 3 /* i */
            invokevirtual android.content.UndoManager.findNextState:(Ljava/util/ArrayList;[Landroid/content/UndoOwner;I)I
            dup
            istore 3 /* i */
            ifge 5
         8: .line 360
            iload 2 /* count */
            ireturn
        end local 3 // int i
        end local 2 // int count
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Landroid/content/UndoManager;
            0    9     1  owners  [Landroid/content/UndoOwner;
            3    9     2   count  I
            4    9     3       i  I
    MethodParameters:
        Name  Flags
      owners  

  public int countRedos(android.content.UndoOwner[]);
    descriptor: ([Landroid/content/UndoOwner;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
         0: .line 369
            aload 1 /* owners */
            ifnonnull 2
         1: .line 370
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
         2: .line 373
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         3: .line 374
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: .line 375
            goto 7
         5: .line 376
      StackMap locals: int int
      StackMap stack:
            iinc 2 /* count */ 1
         6: .line 377
            iinc 3 /* i */ 1
         7: .line 375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            aload 1 /* owners */
            iload 3 /* i */
            invokevirtual android.content.UndoManager.findNextState:(Ljava/util/ArrayList;[Landroid/content/UndoOwner;I)I
            dup
            istore 3 /* i */
            ifge 5
         8: .line 379
            iload 2 /* count */
            ireturn
        end local 3 // int i
        end local 2 // int count
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Landroid/content/UndoManager;
            0    9     1  owners  [Landroid/content/UndoOwner;
            3    9     2   count  I
            4    9     3       i  I
    MethodParameters:
        Name  Flags
      owners  

  public java.lang.CharSequence getUndoLabel(android.content.UndoOwner[]);
    descriptor: ([Landroid/content/UndoOwner;)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
         0: .line 388
            aload 0 /* this */
            aload 1 /* owners */
            invokevirtual android.content.UndoManager.getTopUndo:([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
            astore 2 /* state */
        start local 2 // android.content.UndoManager$UndoState state
         1: .line 389
            aload 2 /* state */
            ifnull 2
            aload 2 /* state */
            invokevirtual android.content.UndoManager$UndoState.getLabel:()Ljava/lang/CharSequence;
            goto 3
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: java.lang.CharSequence
         3: areturn
        end local 2 // android.content.UndoManager$UndoState state
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/content/UndoManager;
            0    4     1  owners  [Landroid/content/UndoOwner;
            1    4     2   state  Landroid/content/UndoManager$UndoState;
    MethodParameters:
        Name  Flags
      owners  

  public java.lang.CharSequence getRedoLabel(android.content.UndoOwner[]);
    descriptor: ([Landroid/content/UndoOwner;)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
         0: .line 398
            aload 0 /* this */
            aload 1 /* owners */
            invokevirtual android.content.UndoManager.getTopRedo:([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
            astore 2 /* state */
        start local 2 // android.content.UndoManager$UndoState state
         1: .line 399
            aload 2 /* state */
            ifnull 2
            aload 2 /* state */
            invokevirtual android.content.UndoManager$UndoState.getLabel:()Ljava/lang/CharSequence;
            goto 3
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: java.lang.CharSequence
         3: areturn
        end local 2 // android.content.UndoManager$UndoState state
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/content/UndoManager;
            0    4     1  owners  [Landroid/content/UndoOwner;
            1    4     2   state  Landroid/content/UndoManager$UndoState;
    MethodParameters:
        Name  Flags
      owners  

  public void beginUpdate(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // java.lang.CharSequence label
         0: .line 408
            aload 0 /* this */
            getfield android.content.UndoManager.mInUndo:Z
            ifeq 2
         1: .line 409
            new java.lang.IllegalStateException
            dup
            ldc "Can't being update while performing undo/redo"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 411
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mUpdateCount:I
            ifgt 6
         3: .line 412
            aload 0 /* this */
            invokevirtual android.content.UndoManager.createWorkingState:()V
         4: .line 413
            aload 0 /* this */
            iconst_0
            putfield android.content.UndoManager.mMerged:Z
         5: .line 414
            aload 0 /* this */
            iconst_0
            putfield android.content.UndoManager.mUpdateCount:I
         6: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            aload 1 /* label */
            invokevirtual android.content.UndoManager$UndoState.updateLabel:(Ljava/lang/CharSequence;)V
         7: .line 418
            aload 0 /* this */
            dup
            getfield android.content.UndoManager.mUpdateCount:I
            iconst_1
            iadd
            putfield android.content.UndoManager.mUpdateCount:I
         8: .line 419
            return
        end local 1 // java.lang.CharSequence label
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Landroid/content/UndoManager;
            0    9     1  label  Ljava/lang/CharSequence;
    MethodParameters:
       Name  Flags
      label  

  private void createWorkingState();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=1, args_size=1
        start local 0 // android.content.UndoManager this
         0: .line 422
            aload 0 /* this */
            new android.content.UndoManager$UndoState
            dup
            aload 0 /* this */
            aload 0 /* this */
            dup
            getfield android.content.UndoManager.mCommitId:I
            dup_x1
            iconst_1
            iadd
            putfield android.content.UndoManager.mCommitId:I
            invokespecial android.content.UndoManager$UndoState.<init>:(Landroid/content/UndoManager;I)V
            putfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
         1: .line 423
            aload 0 /* this */
            getfield android.content.UndoManager.mCommitId:I
            ifge 3
         2: .line 424
            aload 0 /* this */
            iconst_1
            putfield android.content.UndoManager.mCommitId:I
         3: .line 426
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/content/UndoManager;

  public boolean isInUpdate();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.content.UndoManager this
         0: .line 432
            aload 0 /* this */
            getfield android.content.UndoManager.mUpdateCount:I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/content/UndoManager;

  public void setUndoLabel(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // java.lang.CharSequence label
         0: .line 440
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnonnull 2
         1: .line 441
            new java.lang.IllegalStateException
            dup
            ldc "Must be called during an update"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 443
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            aload 1 /* label */
            invokevirtual android.content.UndoManager$UndoState.setLabel:(Ljava/lang/CharSequence;)V
         3: .line 444
            return
        end local 1 // java.lang.CharSequence label
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/content/UndoManager;
            0    4     1  label  Ljava/lang/CharSequence;
    MethodParameters:
       Name  Flags
      label  

  public void suggestUndoLabel(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // java.lang.CharSequence label
         0: .line 451
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnonnull 2
         1: .line 452
            new java.lang.IllegalStateException
            dup
            ldc "Must be called during an update"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 454
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            aload 1 /* label */
            invokevirtual android.content.UndoManager$UndoState.updateLabel:(Ljava/lang/CharSequence;)V
         3: .line 455
            return
        end local 1 // java.lang.CharSequence label
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/content/UndoManager;
            0    4     1  label  Ljava/lang/CharSequence;
    MethodParameters:
       Name  Flags
      label  

  public int getUpdateNestingLevel();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.content.UndoManager this
         0: .line 462
            aload 0 /* this */
            getfield android.content.UndoManager.mUpdateCount:I
            ireturn
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/content/UndoManager;

  public boolean hasOperation(android.content.UndoOwner);
    descriptor: (Landroid/content/UndoOwner;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner owner
         0: .line 474
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnonnull 2
         1: .line 475
            new java.lang.IllegalStateException
            dup
            ldc "Must be called during an update"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 477
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            aload 1 /* owner */
            invokevirtual android.content.UndoManager$UndoState.hasOperation:(Landroid/content/UndoOwner;)Z
            ireturn
        end local 1 // android.content.UndoOwner owner
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Landroid/content/UndoManager;
            0    3     1  owner  Landroid/content/UndoOwner;
    MethodParameters:
       Name  Flags
      owner  

  public android.content.UndoOperation<?> getLastOperation(int);
    descriptor: (I)Landroid/content/UndoOperation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // int mergeMode
         0: .line 485
            aload 0 /* this */
            aconst_null
            aconst_null
            iload 1 /* mergeMode */
            invokevirtual android.content.UndoManager.getLastOperation:(Ljava/lang/Class;Landroid/content/UndoOwner;I)Landroid/content/UndoOperation;
            areturn
        end local 1 // int mergeMode
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Landroid/content/UndoManager;
            0    1     1  mergeMode  I
    Signature: (I)Landroid/content/UndoOperation<*>;
    MethodParameters:
           Name  Flags
      mergeMode  

  public android.content.UndoOperation<?> getLastOperation(android.content.UndoOwner, int);
    descriptor: (Landroid/content/UndoOwner;I)Landroid/content/UndoOperation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner owner
        start local 2 // int mergeMode
         0: .line 498
            aload 0 /* this */
            aconst_null
            aload 1 /* owner */
            iload 2 /* mergeMode */
            invokevirtual android.content.UndoManager.getLastOperation:(Ljava/lang/Class;Landroid/content/UndoOwner;I)Landroid/content/UndoOperation;
            areturn
        end local 2 // int mergeMode
        end local 1 // android.content.UndoOwner owner
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Landroid/content/UndoManager;
            0    1     1      owner  Landroid/content/UndoOwner;
            0    1     2  mergeMode  I
    Signature: (Landroid/content/UndoOwner;I)Landroid/content/UndoOperation<*>;
    MethodParameters:
           Name  Flags
      owner      
      mergeMode  

  public <T extends android.content.UndoOperation> T getLastOperation(java.lang.Class<T>, android.content.UndoOwner, );
    descriptor: (Ljava/lang/Class;Landroid/content/UndoOwner;I)Landroid/content/UndoOperation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // android.content.UndoManager this
        start local 1 // java.lang.Class clazz
        start local 2 // android.content.UndoOwner owner
        start local 3 // int mergeMode
         0: .line 515
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnonnull 2
         1: .line 516
            new java.lang.IllegalStateException
            dup
            ldc "Must be called during an update"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 518
      StackMap locals:
      StackMap stack:
            iload 3 /* mergeMode */
            ifeq 13
            aload 0 /* this */
            getfield android.content.UndoManager.mMerged:Z
            ifne 13
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.hasData:()Z
            ifne 13
         3: .line 519
            aload 0 /* this */
            aconst_null
            invokevirtual android.content.UndoManager.getTopUndo:([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
            astore 4 /* state */
        start local 4 // android.content.UndoManager$UndoState state
         4: .line 521
            aload 4 /* state */
            ifnull 13
            iload 3 /* mergeMode */
            iconst_2
            if_icmpeq 5
            aload 4 /* state */
            invokevirtual android.content.UndoManager$UndoState.hasMultipleOwners:()Z
            ifne 13
         5: .line 522
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            aload 4 /* state */
            invokevirtual android.content.UndoManager$UndoState.canMerge:()Z
            ifeq 13
            aload 4 /* state */
            aload 1 /* clazz */
            aload 2 /* owner */
            invokevirtual android.content.UndoManager$UndoState.getLastOperation:(Ljava/lang/Class;Landroid/content/UndoOwner;)Landroid/content/UndoOperation;
            dup
            astore 5 /* last */
        start local 5 // android.content.UndoOperation last
         6: ifnull 13
         7: .line 523
            aload 5 /* last */
            invokevirtual android.content.UndoOperation.allowMerge:()Z
            ifeq 13
         8: .line 524
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.destroy:()V
         9: .line 525
            aload 0 /* this */
            aload 4 /* state */
            putfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
        10: .line 526
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            aload 4 /* state */
            invokevirtual java.util.ArrayList.remove:(Ljava/lang/Object;)Z
            pop
        11: .line 527
            aload 0 /* this */
            iconst_1
            putfield android.content.UndoManager.mMerged:Z
        12: .line 528
            aload 5 /* last */
            areturn
        end local 5 // android.content.UndoOperation last
        end local 4 // android.content.UndoManager$UndoState state
        13: .line 533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            aload 1 /* clazz */
            aload 2 /* owner */
            invokevirtual android.content.UndoManager$UndoState.getLastOperation:(Ljava/lang/Class;Landroid/content/UndoOwner;)Landroid/content/UndoOperation;
            areturn
        end local 3 // int mergeMode
        end local 2 // android.content.UndoOwner owner
        end local 1 // java.lang.Class clazz
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Landroid/content/UndoManager;
            0   14     1      clazz  Ljava/lang/Class<TT;>;
            0   14     2      owner  Landroid/content/UndoOwner;
            0   14     3  mergeMode  I
            4   13     4      state  Landroid/content/UndoManager$UndoState;
            6   13     5       last  Landroid/content/UndoOperation<*>;
    Signature: <T:Landroid/content/UndoOperation;>(Ljava/lang/Class<TT;>;Landroid/content/UndoOwner;I)TT;
    MethodParameters:
           Name  Flags
      clazz      
      owner      
      mergeMode  

  public void addOperation(android.content.UndoOperation<?>, );
    descriptor: (Landroid/content/UndoOperation;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOperation op
        start local 2 // int mergeMode
         0: .line 543
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnonnull 2
         1: .line 544
            new java.lang.IllegalStateException
            dup
            ldc "Must be called during an update"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 546
      StackMap locals:
      StackMap stack:
            aload 1 /* op */
            invokevirtual android.content.UndoOperation.getOwner:()Landroid/content/UndoOwner;
            astore 3 /* owner */
        start local 3 // android.content.UndoOwner owner
         3: .line 547
            aload 3 /* owner */
            getfield android.content.UndoOwner.mManager:Landroid/content/UndoManager;
            aload 0 /* this */
            if_acmpeq 7
         4: .line 548
            new java.lang.IllegalArgumentException
            dup
         5: .line 549
            ldc "Given operation's owner is not in this undo manager."
         6: .line 548
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 551
      StackMap locals: android.content.UndoOwner
      StackMap stack:
            iload 2 /* mergeMode */
            ifeq 15
            aload 0 /* this */
            getfield android.content.UndoManager.mMerged:Z
            ifne 15
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.hasData:()Z
            ifne 15
         8: .line 552
            aload 0 /* this */
            aconst_null
            invokevirtual android.content.UndoManager.getTopUndo:([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
            astore 4 /* state */
        start local 4 // android.content.UndoManager$UndoState state
         9: .line 553
            aload 4 /* state */
            ifnull 15
            iload 2 /* mergeMode */
            iconst_2
            if_icmpeq 10
            aload 4 /* state */
            invokevirtual android.content.UndoManager$UndoState.hasMultipleOwners:()Z
            ifne 15
        10: .line 554
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            aload 4 /* state */
            invokevirtual android.content.UndoManager$UndoState.canMerge:()Z
            ifeq 15
            aload 4 /* state */
            aload 1 /* op */
            invokevirtual android.content.UndoOperation.getOwner:()Landroid/content/UndoOwner;
            invokevirtual android.content.UndoManager$UndoState.hasOperation:(Landroid/content/UndoOwner;)Z
            ifeq 15
        11: .line 555
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.destroy:()V
        12: .line 556
            aload 0 /* this */
            aload 4 /* state */
            putfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
        13: .line 557
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            aload 4 /* state */
            invokevirtual java.util.ArrayList.remove:(Ljava/lang/Object;)Z
            pop
        14: .line 558
            aload 0 /* this */
            iconst_1
            putfield android.content.UndoManager.mMerged:Z
        end local 4 // android.content.UndoManager$UndoState state
        15: .line 561
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            aload 1 /* op */
            invokevirtual android.content.UndoManager$UndoState.addOperation:(Landroid/content/UndoOperation;)V
        16: .line 562
            return
        end local 3 // android.content.UndoOwner owner
        end local 2 // int mergeMode
        end local 1 // android.content.UndoOperation op
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Landroid/content/UndoManager;
            0   17     1         op  Landroid/content/UndoOperation<*>;
            0   17     2  mergeMode  I
            3   17     3      owner  Landroid/content/UndoOwner;
            9   15     4      state  Landroid/content/UndoManager$UndoState;
    Signature: (Landroid/content/UndoOperation<*>;I)V
    MethodParameters:
           Name  Flags
      op         
      mergeMode  

  public void endUpdate();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.content.UndoManager this
         0: .line 569
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnonnull 2
         1: .line 570
            new java.lang.IllegalStateException
            dup
            ldc "Must be called during an update"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 572
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield android.content.UndoManager.mUpdateCount:I
            iconst_1
            isub
            putfield android.content.UndoManager.mUpdateCount:I
         3: .line 574
            aload 0 /* this */
            getfield android.content.UndoManager.mUpdateCount:I
            ifne 5
         4: .line 575
            aload 0 /* this */
            invokevirtual android.content.UndoManager.pushWorkingState:()V
         5: .line 577
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Landroid/content/UndoManager;

  private void pushWorkingState();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // android.content.UndoManager this
         0: .line 580
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            iadd
            istore 1 /* N */
        start local 1 // int N
         1: .line 582
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.hasData:()Z
            ifeq 8
         2: .line 583
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         3: .line 584
            aload 0 /* this */
            aconst_null
            iconst_m1
            invokevirtual android.content.UndoManager.forgetRedos:([Landroid/content/UndoOwner;I)I
            pop
         4: .line 585
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.commit:()V
         5: .line 586
            iload 1 /* N */
            iconst_2
            if_icmplt 9
         6: .line 590
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            iload 1 /* N */
            iconst_2
            isub
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            invokevirtual android.content.UndoManager$UndoState.makeExecuted:()V
         7: .line 592
            goto 9
         8: .line 593
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.destroy:()V
         9: .line 595
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
        10: .line 597
            aload 0 /* this */
            getfield android.content.UndoManager.mHistorySize:I
            iflt 12
            iload 1 /* N */
            aload 0 /* this */
            getfield android.content.UndoManager.mHistorySize:I
            if_icmple 12
        11: .line 598
            aload 0 /* this */
            aconst_null
            iload 1 /* N */
            aload 0 /* this */
            getfield android.content.UndoManager.mHistorySize:I
            isub
            invokevirtual android.content.UndoManager.forgetUndos:([Landroid/content/UndoOwner;I)I
            pop
        12: .line 600
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int N
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Landroid/content/UndoManager;
            1   13     1     N  I

  public int commitState(android.content.UndoOwner);
    descriptor: (Landroid/content/UndoOwner;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner owner
         0: .line 617
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnull 8
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.hasData:()Z
            ifeq 8
         1: .line 618
            aload 1 /* owner */
            ifnull 2
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            aload 1 /* owner */
            invokevirtual android.content.UndoManager$UndoState.hasOperation:(Landroid/content/UndoOwner;)Z
            ifeq 12
         2: .line 619
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            iconst_0
            invokevirtual android.content.UndoManager$UndoState.setCanMerge:(Z)Z
            pop
         3: .line 620
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.getCommitId:()I
            istore 2 /* commitId */
        start local 2 // int commitId
         4: .line 621
            aload 0 /* this */
            invokevirtual android.content.UndoManager.pushWorkingState:()V
         5: .line 622
            aload 0 /* this */
            invokevirtual android.content.UndoManager.createWorkingState:()V
         6: .line 623
            aload 0 /* this */
            iconst_1
            putfield android.content.UndoManager.mMerged:Z
         7: .line 624
            iload 2 /* commitId */
            ireturn
        end local 2 // int commitId
         8: .line 627
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            invokevirtual android.content.UndoManager.getTopUndo:([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
            astore 2 /* state */
        start local 2 // android.content.UndoManager$UndoState state
         9: .line 628
            aload 2 /* state */
            ifnull 12
            aload 1 /* owner */
            ifnull 10
            aload 2 /* state */
            aload 1 /* owner */
            invokevirtual android.content.UndoManager$UndoState.hasOperation:(Landroid/content/UndoOwner;)Z
            ifeq 12
        10: .line 629
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            aload 2 /* state */
            iconst_0
            invokevirtual android.content.UndoManager$UndoState.setCanMerge:(Z)Z
            pop
        11: .line 630
            aload 2 /* state */
            invokevirtual android.content.UndoManager$UndoState.getCommitId:()I
            ireturn
        end local 2 // android.content.UndoManager$UndoState state
        12: .line 633
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // android.content.UndoOwner owner
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Landroid/content/UndoManager;
            0   13     1     owner  Landroid/content/UndoOwner;
            4    8     2  commitId  I
            9   12     2     state  Landroid/content/UndoManager$UndoState;
    MethodParameters:
       Name  Flags
      owner  

  public boolean uncommitState(int, android.content.UndoOwner);
    descriptor: (ILandroid/content/UndoOwner;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // int commitId
        start local 2 // android.content.UndoOwner owner
         0: .line 646
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            ifnull 3
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            invokevirtual android.content.UndoManager$UndoState.getCommitId:()I
            iload 1 /* commitId */
            if_icmpne 3
         1: .line 647
            aload 2 /* owner */
            ifnull 2
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            aload 2 /* owner */
            invokevirtual android.content.UndoManager$UndoState.hasOperation:(Landroid/content/UndoOwner;)Z
            ifeq 7
         2: .line 648
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.content.UndoManager.mWorking:Landroid/content/UndoManager$UndoState;
            iconst_1
            invokevirtual android.content.UndoManager$UndoState.setCanMerge:(Z)Z
            ireturn
         3: .line 651
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            invokevirtual android.content.UndoManager.getTopUndo:([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
            astore 3 /* state */
        start local 3 // android.content.UndoManager$UndoState state
         4: .line 652
            aload 3 /* state */
            ifnull 7
            aload 2 /* owner */
            ifnull 5
            aload 3 /* state */
            aload 2 /* owner */
            invokevirtual android.content.UndoManager$UndoState.hasOperation:(Landroid/content/UndoOwner;)Z
            ifeq 7
         5: .line 653
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            aload 3 /* state */
            invokevirtual android.content.UndoManager$UndoState.getCommitId:()I
            iload 1 /* commitId */
            if_icmpne 7
         6: .line 654
            aload 3 /* state */
            iconst_1
            invokevirtual android.content.UndoManager$UndoState.setCanMerge:(Z)Z
            ireturn
        end local 3 // android.content.UndoManager$UndoState state
         7: .line 658
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // android.content.UndoOwner owner
        end local 1 // int commitId
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Landroid/content/UndoManager;
            0    8     1  commitId  I
            0    8     2     owner  Landroid/content/UndoOwner;
            4    7     3     state  Landroid/content/UndoManager$UndoState;
    MethodParameters:
          Name  Flags
      commitId  
      owner     

  android.content.UndoManager$UndoState getTopUndo(android.content.UndoOwner[]);
    descriptor: ([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
         0: .line 662
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifgt 2
         1: .line 663
            aconst_null
            areturn
         2: .line 665
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            aload 1 /* owners */
            iconst_m1
            invokevirtual android.content.UndoManager.findPrevState:(Ljava/util/ArrayList;[Landroid/content/UndoOwner;I)I
            istore 2 /* i */
        start local 2 // int i
         3: .line 666
            iload 2 /* i */
            iflt 4
            aload 0 /* this */
            getfield android.content.UndoManager.mUndos:Ljava/util/ArrayList;
            iload 2 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            goto 5
      StackMap locals: int
      StackMap stack:
         4: aconst_null
      StackMap locals:
      StackMap stack: android.content.UndoManager$UndoState
         5: areturn
        end local 2 // int i
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Landroid/content/UndoManager;
            0    6     1  owners  [Landroid/content/UndoOwner;
            3    6     2       i  I
    MethodParameters:
        Name  Flags
      owners  

  android.content.UndoManager$UndoState getTopRedo(android.content.UndoOwner[]);
    descriptor: ([Landroid/content/UndoOwner;)Landroid/content/UndoManager$UndoState;
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoOwner[] owners
         0: .line 670
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifgt 2
         1: .line 671
            aconst_null
            areturn
         2: .line 673
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            aload 1 /* owners */
            iconst_m1
            invokevirtual android.content.UndoManager.findPrevState:(Ljava/util/ArrayList;[Landroid/content/UndoOwner;I)I
            istore 2 /* i */
        start local 2 // int i
         3: .line 674
            iload 2 /* i */
            iflt 4
            aload 0 /* this */
            getfield android.content.UndoManager.mRedos:Ljava/util/ArrayList;
            iload 2 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            goto 5
      StackMap locals: int
      StackMap stack:
         4: aconst_null
      StackMap locals:
      StackMap stack: android.content.UndoManager$UndoState
         5: areturn
        end local 2 // int i
        end local 1 // android.content.UndoOwner[] owners
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Landroid/content/UndoManager;
            0    6     1  owners  [Landroid/content/UndoOwner;
            3    6     2       i  I
    MethodParameters:
        Name  Flags
      owners  

  boolean matchOwners(android.content.UndoManager$UndoState, android.content.UndoOwner[]);
    descriptor: (Landroid/content/UndoManager$UndoState;[Landroid/content/UndoOwner;)Z
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // android.content.UndoManager this
        start local 1 // android.content.UndoManager$UndoState state
        start local 2 // android.content.UndoOwner[] owners
         0: .line 678
            aload 2 /* owners */
            ifnonnull 2
         1: .line 679
            iconst_1
            ireturn
         2: .line 681
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 7
         4: .line 682
      StackMap locals: int
      StackMap stack:
            aload 1 /* state */
            aload 2 /* owners */
            iload 3 /* i */
            aaload
            invokevirtual android.content.UndoManager$UndoState.matchOwner:(Landroid/content/UndoOwner;)Z
            ifeq 6
         5: .line 683
            iconst_1
            ireturn
         6: .line 681
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 2 /* owners */
            arraylength
            if_icmplt 4
        end local 3 // int i
         8: .line 686
            iconst_0
            ireturn
        end local 2 // android.content.UndoOwner[] owners
        end local 1 // android.content.UndoManager$UndoState state
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Landroid/content/UndoManager;
            0    9     1   state  Landroid/content/UndoManager$UndoState;
            0    9     2  owners  [Landroid/content/UndoOwner;
            3    8     3       i  I
    MethodParameters:
        Name  Flags
      state   
      owners  

  int findPrevState(java.util.ArrayList<android.content.UndoManager$UndoState>, android.content.UndoOwner[], );
    descriptor: (Ljava/util/ArrayList;[Landroid/content/UndoOwner;I)I
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // android.content.UndoManager this
        start local 1 // java.util.ArrayList states
        start local 2 // android.content.UndoOwner[] owners
        start local 3 // int from
         0: .line 690
            aload 1 /* states */
            invokevirtual java.util.ArrayList.size:()I
            istore 4 /* N */
        start local 4 // int N
         1: .line 692
            iload 3 /* from */
            iconst_m1
            if_icmpne 3
         2: .line 693
            iload 4 /* N */
            iconst_1
            isub
            istore 3 /* from */
         3: .line 695
      StackMap locals: int
      StackMap stack:
            iload 3 /* from */
            iload 4 /* N */
            if_icmplt 5
         4: .line 696
            iconst_m1
            ireturn
         5: .line 698
      StackMap locals:
      StackMap stack:
            aload 2 /* owners */
            ifnonnull 11
         6: .line 699
            iload 3 /* from */
            ireturn
         7: .line 703
      StackMap locals:
      StackMap stack:
            aload 1 /* states */
            iload 3 /* from */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            astore 5 /* state */
        start local 5 // android.content.UndoManager$UndoState state
         8: .line 704
            aload 0 /* this */
            aload 5 /* state */
            aload 2 /* owners */
            invokevirtual android.content.UndoManager.matchOwners:(Landroid/content/UndoManager$UndoState;[Landroid/content/UndoOwner;)Z
            ifeq 10
         9: .line 705
            iload 3 /* from */
            ireturn
        10: .line 707
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            iinc 3 /* from */ -1
        end local 5 // android.content.UndoManager$UndoState state
        11: .line 702
      StackMap locals:
      StackMap stack:
            iload 3 /* from */
            ifge 7
        12: .line 710
            iconst_m1
            ireturn
        end local 4 // int N
        end local 3 // int from
        end local 2 // android.content.UndoOwner[] owners
        end local 1 // java.util.ArrayList states
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Landroid/content/UndoManager;
            0   13     1  states  Ljava/util/ArrayList<Landroid/content/UndoManager$UndoState;>;
            0   13     2  owners  [Landroid/content/UndoOwner;
            0   13     3    from  I
            1   13     4       N  I
            8   11     5   state  Landroid/content/UndoManager$UndoState;
    Signature: (Ljava/util/ArrayList<Landroid/content/UndoManager$UndoState;>;[Landroid/content/UndoOwner;I)I
    MethodParameters:
        Name  Flags
      states  
      owners  
      from    

  int findNextState(java.util.ArrayList<android.content.UndoManager$UndoState>, android.content.UndoOwner[], );
    descriptor: (Ljava/util/ArrayList;[Landroid/content/UndoOwner;I)I
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // android.content.UndoManager this
        start local 1 // java.util.ArrayList states
        start local 2 // android.content.UndoOwner[] owners
        start local 3 // int from
         0: .line 714
            aload 1 /* states */
            invokevirtual java.util.ArrayList.size:()I
            istore 4 /* N */
        start local 4 // int N
         1: .line 716
            iload 3 /* from */
            ifge 3
         2: .line 717
            iconst_0
            istore 3 /* from */
         3: .line 719
      StackMap locals: int
      StackMap stack:
            iload 3 /* from */
            iload 4 /* N */
            if_icmplt 5
         4: .line 720
            iconst_m1
            ireturn
         5: .line 722
      StackMap locals:
      StackMap stack:
            aload 2 /* owners */
            ifnonnull 11
         6: .line 723
            iload 3 /* from */
            ireturn
         7: .line 727
      StackMap locals:
      StackMap stack:
            aload 1 /* states */
            iload 3 /* from */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.content.UndoManager$UndoState
            astore 5 /* state */
        start local 5 // android.content.UndoManager$UndoState state
         8: .line 728
            aload 0 /* this */
            aload 5 /* state */
            aload 2 /* owners */
            invokevirtual android.content.UndoManager.matchOwners:(Landroid/content/UndoManager$UndoState;[Landroid/content/UndoOwner;)Z
            ifeq 10
         9: .line 729
            iload 3 /* from */
            ireturn
        10: .line 731
      StackMap locals: android.content.UndoManager$UndoState
      StackMap stack:
            iinc 3 /* from */ 1
        end local 5 // android.content.UndoManager$UndoState state
        11: .line 726
      StackMap locals:
      StackMap stack:
            iload 3 /* from */
            iload 4 /* N */
            if_icmplt 7
        12: .line 734
            iconst_m1
            ireturn
        end local 4 // int N
        end local 3 // int from
        end local 2 // android.content.UndoOwner[] owners
        end local 1 // java.util.ArrayList states
        end local 0 // android.content.UndoManager this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Landroid/content/UndoManager;
            0   13     1  states  Ljava/util/ArrayList<Landroid/content/UndoManager$UndoState;>;
            0   13     2  owners  [Landroid/content/UndoOwner;
            0   13     3    from  I
            1   13     4       N  I
            8   11     5   state  Landroid/content/UndoManager$UndoState;
    Signature: (Ljava/util/ArrayList<Landroid/content/UndoManager$UndoState;>;[Landroid/content/UndoOwner;I)I
    MethodParameters:
        Name  Flags
      states  
      owners  
      from    
}
SourceFile: "UndoManager.java"
NestMembers:
  android.content.UndoManager$UndoState
InnerClasses:
  final UndoState = android.content.UndoManager$UndoState of android.content.UndoManager