class sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator
  super_class: java.lang.Object
{
  static final double MIN_THRESHOLD;
    descriptor: D
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 0.1

  static final double MAX_THRESHOLD;
    descriptor: D
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 0.5

  double accumulatedDelta;
    descriptor: D
    flags: (0x0000) 

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator this
         0: .line 251
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/lwawt/macosx/CPlatformResponder$DeltaAccumulator;

  int getRoundedDelta(double, int);
    descriptor: (DI)I
    flags: (0x0000) 
    Code:
      stack=5, locals=9, args_size=3
        start local 0 // sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator this
        start local 1 // double delta
        start local 3 // int scrollPhase
         0: .line 259
            dload 1 /* delta */
            invokestatic java.lang.Math.round:(D)J
            l2i
            istore 4 /* roundDelta */
        start local 4 // int roundDelta
         1: .line 261
            iload 3 /* scrollPhase */
            iconst_1
            if_icmpne 7
         2: .line 262
            iload 4 /* roundDelta */
            ifne 27
            dload 1 /* delta */
            dconst_0
            dcmpl
            ifeq 27
         3: .line 263
            dload 1 /* delta */
            dconst_0
            dcmpl
            ifle 4
            iconst_1
            goto 5
      StackMap locals: int
      StackMap stack:
         4: iconst_m1
      StackMap locals:
      StackMap stack: int
         5: istore 4 /* roundDelta */
         6: .line 265
            goto 27
         7: .line 266
      StackMap locals:
      StackMap stack:
            iload 3 /* scrollPhase */
            iconst_2
            if_icmpne 8
            iconst_1
            goto 9
      StackMap locals:
      StackMap stack:
         8: iconst_0
      StackMap locals:
      StackMap stack: int
         9: istore 5 /* begin */
        start local 5 // boolean begin
        10: .line 267
            iload 3 /* scrollPhase */
            iconst_5
            if_icmpeq 13
        11: .line 268
            iload 3 /* scrollPhase */
            iconst_4
            if_icmpeq 13
        12: .line 267
            iconst_0
            goto 14
      StackMap locals: int
      StackMap stack:
        13: iconst_1
      StackMap locals:
      StackMap stack: int
        14: istore 6 /* end */
        start local 6 // boolean end
        15: .line 270
            iload 5 /* begin */
            ifeq 17
        16: .line 271
            aload 0 /* this */
            dconst_0
            putfield sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator.accumulatedDelta:D
        17: .line 274
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator.accumulatedDelta:D
            dload 1 /* delta */
            dadd
            putfield sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator.accumulatedDelta:D
        18: .line 276
            aload 0 /* this */
            getfield sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator.accumulatedDelta:D
            invokestatic java.lang.Math.abs:(D)D
            dstore 7 /* absAccumulatedDelta */
        start local 7 // double absAccumulatedDelta
        19: .line 277
            dload 7 /* absAccumulatedDelta */
            ldc 0.5
            dcmpl
            ifle 22
        20: .line 278
            aload 0 /* this */
            getfield sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator.accumulatedDelta:D
            invokestatic java.lang.Math.round:(D)J
            l2i
            istore 4 /* roundDelta */
        21: .line 279
            aload 0 /* this */
            dup
            getfield sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator.accumulatedDelta:D
            iload 4 /* roundDelta */
            i2d
            dsub
            putfield sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator.accumulatedDelta:D
        22: .line 282
      StackMap locals: double
      StackMap stack:
            iload 6 /* end */
            ifeq 27
        23: .line 283
            iload 4 /* roundDelta */
            ifne 27
            dload 7 /* absAccumulatedDelta */
            ldc 0.1
            dcmpl
            ifle 27
        24: .line 284
            aload 0 /* this */
            getfield sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator.accumulatedDelta:D
            dconst_0
            dcmpl
            ifle 25
            iconst_1
            goto 26
      StackMap locals:
      StackMap stack:
        25: iconst_m1
      StackMap locals:
      StackMap stack: int
        26: istore 4 /* roundDelta */
        end local 7 // double absAccumulatedDelta
        end local 6 // boolean end
        end local 5 // boolean begin
        27: .line 289
      StackMap locals:
      StackMap stack:
            iload 4 /* roundDelta */
            ireturn
        end local 4 // int roundDelta
        end local 3 // int scrollPhase
        end local 1 // double delta
        end local 0 // sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   28     0                 this  Lsun/lwawt/macosx/CPlatformResponder$DeltaAccumulator;
            0   28     1                delta  D
            0   28     3          scrollPhase  I
            1   28     4           roundDelta  I
           10   27     5                begin  Z
           15   27     6                  end  Z
           19   27     7  absAccumulatedDelta  D
    MethodParameters:
             Name  Flags
      delta        
      scrollPhase  
}
SourceFile: "CPlatformResponder.java"
NestHost: sun.lwawt.macosx.CPlatformResponder
InnerClasses:
  DeltaAccumulator = sun.lwawt.macosx.CPlatformResponder$DeltaAccumulator of sun.lwawt.macosx.CPlatformResponder