class android.widget.RemoteViews$ViewTree
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: android.widget.RemoteViews$ViewTree
  super_class: java.lang.Object
{
  private static final int INSERT_AT_END_INDEX;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  private android.view.View mRoot;
    descriptor: Landroid/view/View;
    flags: (0x0002) ACC_PRIVATE

  private java.util.ArrayList<android.widget.RemoteViews$ViewTree> mChildren;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/ArrayList<Landroid/widget/RemoteViews$ViewTree;>;

  private void <init>(android.view.View);
    descriptor: (Landroid/view/View;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.widget.RemoteViews$ViewTree this
        start local 1 // android.view.View root
         0: .line 3729
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 3730
            aload 0 /* this */
            aload 1 /* root */
            putfield android.widget.RemoteViews$ViewTree.mRoot:Landroid/view/View;
         2: .line 3731
            return
        end local 1 // android.view.View root
        end local 0 // android.widget.RemoteViews$ViewTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/widget/RemoteViews$ViewTree;
            0    3     1  root  Landroid/view/View;
    MethodParameters:
      Name  Flags
      root  

  public void createTree();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // android.widget.RemoteViews$ViewTree this
         0: .line 3734
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            ifnull 2
         1: .line 3735
            return
         2: .line 3738
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
         3: .line 3739
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mRoot:Landroid/view/View;
            instanceof android.view.ViewGroup
            ifeq 11
         4: .line 3740
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mRoot:Landroid/view/View;
            checkcast android.view.ViewGroup
            astore 1 /* vg */
        start local 1 // android.view.ViewGroup vg
         5: .line 3741
            aload 1 /* vg */
            invokevirtual android.view.ViewGroup.getChildCount:()I
            istore 2 /* count */
        start local 2 // int count
         6: .line 3742
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 10
         8: .line 3743
      StackMap locals: android.view.ViewGroup int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* vg */
            iload 3 /* i */
            invokevirtual android.view.ViewGroup.getChildAt:(I)Landroid/view/View;
            invokevirtual android.widget.RemoteViews$ViewTree.addViewChild:(Landroid/view/View;)V
         9: .line 3742
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iload 2 /* count */
            if_icmplt 8
        end local 3 // int i
        end local 2 // int count
        end local 1 // android.view.ViewGroup vg
        11: .line 3746
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.widget.RemoteViews$ViewTree this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Landroid/widget/RemoteViews$ViewTree;
            5   11     1     vg  Landroid/view/ViewGroup;
            6   11     2  count  I
            7   11     3      i  I

  public android.widget.RemoteViews$ViewTree findViewTreeById(int);
    descriptor: (I)Landroid/widget/RemoteViews$ViewTree;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // android.widget.RemoteViews$ViewTree this
        start local 1 // int id
         0: .line 3749
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mRoot:Landroid/view/View;
            invokevirtual android.view.View.getId:()I
            iload 1 /* id */
            if_icmpne 2
         1: .line 3750
            aload 0 /* this */
            areturn
         2: .line 3752
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            ifnonnull 4
         3: .line 3753
            aconst_null
            areturn
         4: .line 3755
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 3
            goto 9
      StackMap locals: android.widget.RemoteViews$ViewTree int top java.util.Iterator
      StackMap stack:
         5: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast android.widget.RemoteViews$ViewTree
            astore 2 /* tree */
        start local 2 // android.widget.RemoteViews$ViewTree tree
         6: .line 3756
            aload 2 /* tree */
            iload 1 /* id */
            invokevirtual android.widget.RemoteViews$ViewTree.findViewTreeById:(I)Landroid/widget/RemoteViews$ViewTree;
            astore 4 /* result */
        start local 4 // android.widget.RemoteViews$ViewTree result
         7: .line 3757
            aload 4 /* result */
            ifnull 9
         8: .line 3758
            aload 4 /* result */
            areturn
        end local 4 // android.widget.RemoteViews$ViewTree result
        end local 2 // android.widget.RemoteViews$ViewTree tree
         9: .line 3755
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        10: .line 3761
            aconst_null
            areturn
        end local 1 // int id
        end local 0 // android.widget.RemoteViews$ViewTree this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Landroid/widget/RemoteViews$ViewTree;
            0   11     1      id  I
            6    9     2    tree  Landroid/widget/RemoteViews$ViewTree;
            7    9     4  result  Landroid/widget/RemoteViews$ViewTree;
    MethodParameters:
      Name  Flags
      id    

  public void replaceView(android.view.View);
    descriptor: (Landroid/view/View;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.widget.RemoteViews$ViewTree this
        start local 1 // android.view.View v
         0: .line 3765
            aload 0 /* this */
            aload 1 /* v */
            putfield android.widget.RemoteViews$ViewTree.mRoot:Landroid/view/View;
         1: .line 3766
            aload 0 /* this */
            aconst_null
            putfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
         2: .line 3767
            aload 0 /* this */
            invokevirtual android.widget.RemoteViews$ViewTree.createTree:()V
         3: .line 3768
            return
        end local 1 // android.view.View v
        end local 0 // android.widget.RemoteViews$ViewTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/widget/RemoteViews$ViewTree;
            0    4     1     v  Landroid/view/View;
    MethodParameters:
      Name  Flags
      v     

  public <T extends android.view.View> T findViewById();
    descriptor: (I)Landroid/view/View;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // android.widget.RemoteViews$ViewTree this
        start local 1 // int id
         0: .line 3771
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 3772
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mRoot:Landroid/view/View;
            iload 1 /* id */
            invokevirtual android.view.View.findViewById:(I)Landroid/view/View;
            areturn
         2: .line 3774
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* id */
            invokevirtual android.widget.RemoteViews$ViewTree.findViewTreeById:(I)Landroid/widget/RemoteViews$ViewTree;
            astore 2 /* tree */
        start local 2 // android.widget.RemoteViews$ViewTree tree
         3: .line 3775
            aload 2 /* tree */
            ifnonnull 4
            aconst_null
            goto 5
      StackMap locals: android.widget.RemoteViews$ViewTree
      StackMap stack:
         4: aload 2 /* tree */
            getfield android.widget.RemoteViews$ViewTree.mRoot:Landroid/view/View;
      StackMap locals:
      StackMap stack: android.view.View
         5: areturn
        end local 2 // android.widget.RemoteViews$ViewTree tree
        end local 1 // int id
        end local 0 // android.widget.RemoteViews$ViewTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Landroid/widget/RemoteViews$ViewTree;
            0    6     1    id  I
            3    6     2  tree  Landroid/widget/RemoteViews$ViewTree;
    Signature: <T:Landroid/view/View;>(I)TT;
    MethodParameters:
      Name  Flags
      id    

  public void addChild(android.widget.RemoteViews$ViewTree);
    descriptor: (Landroid/widget/RemoteViews$ViewTree;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.widget.RemoteViews$ViewTree this
        start local 1 // android.widget.RemoteViews$ViewTree child
         0: .line 3779
            aload 0 /* this */
            aload 1 /* child */
            iconst_m1
            invokevirtual android.widget.RemoteViews$ViewTree.addChild:(Landroid/widget/RemoteViews$ViewTree;I)V
         1: .line 3780
            return
        end local 1 // android.widget.RemoteViews$ViewTree child
        end local 0 // android.widget.RemoteViews$ViewTree this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/widget/RemoteViews$ViewTree;
            0    2     1  child  Landroid/widget/RemoteViews$ViewTree;
    MethodParameters:
       Name  Flags
      child  

  public void addChild(android.widget.RemoteViews$ViewTree, int);
    descriptor: (Landroid/widget/RemoteViews$ViewTree;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.widget.RemoteViews$ViewTree this
        start local 1 // android.widget.RemoteViews$ViewTree child
        start local 2 // int index
         0: .line 3788
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 3789
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
         2: .line 3791
      StackMap locals:
      StackMap stack:
            aload 1 /* child */
            invokevirtual android.widget.RemoteViews$ViewTree.createTree:()V
         3: .line 3793
            iload 2 /* index */
            iconst_m1
            if_icmpne 6
         4: .line 3794
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            aload 1 /* child */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         5: .line 3795
            return
         6: .line 3798
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            iload 2 /* index */
            aload 1 /* child */
            invokevirtual java.util.ArrayList.add:(ILjava/lang/Object;)V
         7: .line 3799
            return
        end local 2 // int index
        end local 1 // android.widget.RemoteViews$ViewTree child
        end local 0 // android.widget.RemoteViews$ViewTree this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Landroid/widget/RemoteViews$ViewTree;
            0    8     1  child  Landroid/widget/RemoteViews$ViewTree;
            0    8     2  index  I
    MethodParameters:
       Name  Flags
      child  
      index  

  private void addViewChild(android.view.View);
    descriptor: (Landroid/view/View;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // android.widget.RemoteViews$ViewTree this
        start local 1 // android.view.View v
         0: .line 3805
            aload 1 /* v */
            invokevirtual android.view.View.isRootNamespace:()Z
            ifeq 2
         1: .line 3806
            return
         2: .line 3812
      StackMap locals:
      StackMap stack:
            aload 1 /* v */
            invokevirtual android.view.View.getId:()I
            ifeq 7
         3: .line 3813
            new android.widget.RemoteViews$ViewTree
            dup
            aload 1 /* v */
            invokespecial android.widget.RemoteViews$ViewTree.<init>:(Landroid/view/View;)V
            astore 3 /* tree */
        start local 3 // android.widget.RemoteViews$ViewTree tree
         4: .line 3814
            aload 0 /* this */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            aload 3 /* tree */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         5: .line 3815
            aload 3 /* tree */
            astore 2 /* target */
        end local 3 // android.widget.RemoteViews$ViewTree tree
        start local 2 // android.widget.RemoteViews$ViewTree target
         6: .line 3816
            goto 8
        end local 2 // android.widget.RemoteViews$ViewTree target
         7: .line 3817
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            astore 2 /* target */
        start local 2 // android.widget.RemoteViews$ViewTree target
         8: .line 3820
      StackMap locals: android.widget.RemoteViews$ViewTree
      StackMap stack:
            aload 1 /* v */
            instanceof android.view.ViewGroup
            ifeq 18
         9: .line 3821
            aload 2 /* target */
            getfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
            ifnonnull 18
        10: .line 3822
            aload 2 /* target */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.widget.RemoteViews$ViewTree.mChildren:Ljava/util/ArrayList;
        11: .line 3823
            aload 1 /* v */
            checkcast android.view.ViewGroup
            astore 3 /* vg */
        start local 3 // android.view.ViewGroup vg
        12: .line 3824
            aload 3 /* vg */
            invokevirtual android.view.ViewGroup.getChildCount:()I
            istore 4 /* count */
        start local 4 // int count
        13: .line 3825
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        14: goto 17
        15: .line 3826
      StackMap locals: android.view.ViewGroup int int
      StackMap stack:
            aload 2 /* target */
            aload 3 /* vg */
            iload 5 /* i */
            invokevirtual android.view.ViewGroup.getChildAt:(I)Landroid/view/View;
            invokevirtual android.widget.RemoteViews$ViewTree.addViewChild:(Landroid/view/View;)V
        16: .line 3825
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 5 /* i */
            iload 4 /* count */
            if_icmplt 15
        end local 5 // int i
        end local 4 // int count
        end local 3 // android.view.ViewGroup vg
        18: .line 3830
      StackMap locals:
      StackMap stack:
            return
        end local 2 // android.widget.RemoteViews$ViewTree target
        end local 1 // android.view.View v
        end local 0 // android.widget.RemoteViews$ViewTree this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Landroid/widget/RemoteViews$ViewTree;
            0   19     1       v  Landroid/view/View;
            6    7     2  target  Landroid/widget/RemoteViews$ViewTree;
            8   19     2  target  Landroid/widget/RemoteViews$ViewTree;
            4    6     3    tree  Landroid/widget/RemoteViews$ViewTree;
           12   18     3      vg  Landroid/view/ViewGroup;
           13   18     4   count  I
           14   18     5       i  I
    MethodParameters:
      Name  Flags
      v     
}
SourceFile: "RemoteViews.java"
NestHost: android.widget.RemoteViews
InnerClasses:
  private ViewTree = android.widget.RemoteViews$ViewTree of android.widget.RemoteViews