public class android.animation.TimeAnimator extends android.animation.ValueAnimator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.animation.TimeAnimator
  super_class: android.animation.ValueAnimator
{
  private android.animation.TimeAnimator$TimeListener mListener;
    descriptor: Landroid/animation/TimeAnimator$TimeListener;
    flags: (0x0002) ACC_PRIVATE

  private long mPreviousTime;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.animation.TimeAnimator this
         0: .line 28
            aload 0 /* this */
            invokespecial android.animation.ValueAnimator.<init>:()V
         1: .line 31
            aload 0 /* this */
            ldc -1
            putfield android.animation.TimeAnimator.mPreviousTime:J
         2: .line 28
            return
        end local 0 // android.animation.TimeAnimator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/animation/TimeAnimator;

  public void start();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.animation.TimeAnimator this
         0: .line 35
            aload 0 /* this */
            ldc -1
            putfield android.animation.TimeAnimator.mPreviousTime:J
         1: .line 36
            aload 0 /* this */
            invokespecial android.animation.ValueAnimator.start:()V
         2: .line 37
            return
        end local 0 // android.animation.TimeAnimator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/animation/TimeAnimator;

  boolean animateBasedOnTime(long);
    descriptor: (J)Z
    flags: (0x0000) 
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // android.animation.TimeAnimator this
        start local 1 // long currentTime
         0: .line 41
            aload 0 /* this */
            getfield android.animation.TimeAnimator.mListener:Landroid/animation/TimeAnimator$TimeListener;
            ifnull 7
         1: .line 42
            lload 1 /* currentTime */
            aload 0 /* this */
            getfield android.animation.TimeAnimator.mStartTime:J
            lsub
            lstore 3 /* totalTime */
        start local 3 // long totalTime
         2: .line 43
            aload 0 /* this */
            getfield android.animation.TimeAnimator.mPreviousTime:J
            lconst_0
            lcmp
            ifge 3
            lconst_0
            goto 4
      StackMap locals: long
      StackMap stack:
         3: lload 1 /* currentTime */
            aload 0 /* this */
            getfield android.animation.TimeAnimator.mPreviousTime:J
            lsub
      StackMap locals:
      StackMap stack: long
         4: lstore 5 /* deltaTime */
        start local 5 // long deltaTime
         5: .line 44
            aload 0 /* this */
            lload 1 /* currentTime */
            putfield android.animation.TimeAnimator.mPreviousTime:J
         6: .line 45
            aload 0 /* this */
            getfield android.animation.TimeAnimator.mListener:Landroid/animation/TimeAnimator$TimeListener;
            aload 0 /* this */
            lload 3 /* totalTime */
            lload 5 /* deltaTime */
            invokeinterface android.animation.TimeAnimator$TimeListener.onTimeUpdate:(Landroid/animation/TimeAnimator;JJ)V
        end local 5 // long deltaTime
        end local 3 // long totalTime
         7: .line 47
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // long currentTime
        end local 0 // android.animation.TimeAnimator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Landroid/animation/TimeAnimator;
            0    8     1  currentTime  J
            2    7     3    totalTime  J
            5    7     5    deltaTime  J
    MethodParameters:
             Name  Flags
      currentTime  

  public void setCurrentPlayTime(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=2
        start local 0 // android.animation.TimeAnimator this
        start local 1 // long playTime
         0: .line 52
            invokestatic android.view.animation.AnimationUtils.currentAnimationTimeMillis:()J
            lstore 3 /* currentTime */
        start local 3 // long currentTime
         1: .line 53
            aload 0 /* this */
            aload 0 /* this */
            getfield android.animation.TimeAnimator.mStartTime:J
            lload 3 /* currentTime */
            lload 1 /* playTime */
            lsub
            invokestatic java.lang.Math.max:(JJ)J
            putfield android.animation.TimeAnimator.mStartTime:J
         2: .line 54
            aload 0 /* this */
            iconst_1
            putfield android.animation.TimeAnimator.mStartTimeCommitted:Z
         3: .line 55
            aload 0 /* this */
            lload 3 /* currentTime */
            invokevirtual android.animation.TimeAnimator.animateBasedOnTime:(J)Z
            pop
         4: .line 56
            return
        end local 3 // long currentTime
        end local 1 // long playTime
        end local 0 // android.animation.TimeAnimator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Landroid/animation/TimeAnimator;
            0    5     1     playTime  J
            1    5     3  currentTime  J
    MethodParameters:
          Name  Flags
      playTime  

  public void setTimeListener(android.animation.TimeAnimator$TimeListener);
    descriptor: (Landroid/animation/TimeAnimator$TimeListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.animation.TimeAnimator this
        start local 1 // android.animation.TimeAnimator$TimeListener listener
         0: .line 65
            aload 0 /* this */
            aload 1 /* listener */
            putfield android.animation.TimeAnimator.mListener:Landroid/animation/TimeAnimator$TimeListener;
         1: .line 66
            return
        end local 1 // android.animation.TimeAnimator$TimeListener listener
        end local 0 // android.animation.TimeAnimator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/animation/TimeAnimator;
            0    2     1  listener  Landroid/animation/TimeAnimator$TimeListener;
    MethodParameters:
          Name  Flags
      listener  

  void animateValue(float);
    descriptor: (F)V
    flags: (0x0000) 
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // android.animation.TimeAnimator this
        start local 1 // float fraction
         0: .line 71
            return
        end local 1 // float fraction
        end local 0 // android.animation.TimeAnimator this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Landroid/animation/TimeAnimator;
            0    1     1  fraction  F
    MethodParameters:
          Name  Flags
      fraction  

  void initAnimation();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // android.animation.TimeAnimator this
         0: .line 76
            return
        end local 0 // android.animation.TimeAnimator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/animation/TimeAnimator;
}
SourceFile: "TimeAnimator.java"
NestMembers:
  android.animation.TimeAnimator$TimeListener
InnerClasses:
  public abstract TimeListener = android.animation.TimeAnimator$TimeListener of android.animation.TimeAnimator