public final class com.sun.glass.ui.GestureSupport
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.glass.ui.GestureSupport
  super_class: java.lang.Object
{
  private static final double THRESHOLD_SCROLL;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1.0

  private static final double THRESHOLD_SCALE;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.01

  private static final double THRESHOLD_EXPANSION;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.01

  private static final double THRESHOLD_ROTATE;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final com.sun.glass.ui.GestureSupport$GestureState scrolling;
    descriptor: Lcom/sun/glass/ui/GestureSupport$GestureState;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.sun.glass.ui.GestureSupport$GestureState rotating;
    descriptor: Lcom/sun/glass/ui/GestureSupport$GestureState;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.sun.glass.ui.GestureSupport$GestureState zooming;
    descriptor: Lcom/sun/glass/ui/GestureSupport$GestureState;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.sun.glass.ui.GestureSupport$GestureState swiping;
    descriptor: Lcom/sun/glass/ui/GestureSupport$GestureState;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private double totalScrollX;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double totalScrollY;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double totalScale;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double totalExpansion;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double totalRotation;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double multiplierX;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double multiplierY;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 73
            ldc 0.017453292519943295
            invokestatic java.lang.Math.toDegrees:(D)D
            putstatic com.sun.glass.ui.GestureSupport.THRESHOLD_ROTATE:D
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // boolean zoomWithExpansion
         0: .line 90
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 75
            aload 0 /* this */
            new com.sun.glass.ui.GestureSupport$GestureState
            dup
            invokespecial com.sun.glass.ui.GestureSupport$GestureState.<init>:()V
            putfield com.sun.glass.ui.GestureSupport.scrolling:Lcom/sun/glass/ui/GestureSupport$GestureState;
         2: .line 76
            aload 0 /* this */
            new com.sun.glass.ui.GestureSupport$GestureState
            dup
            invokespecial com.sun.glass.ui.GestureSupport$GestureState.<init>:()V
            putfield com.sun.glass.ui.GestureSupport.rotating:Lcom/sun/glass/ui/GestureSupport$GestureState;
         3: .line 77
            aload 0 /* this */
            new com.sun.glass.ui.GestureSupport$GestureState
            dup
            invokespecial com.sun.glass.ui.GestureSupport$GestureState.<init>:()V
            putfield com.sun.glass.ui.GestureSupport.zooming:Lcom/sun/glass/ui/GestureSupport$GestureState;
         4: .line 78
            aload 0 /* this */
            new com.sun.glass.ui.GestureSupport$GestureState
            dup
            invokespecial com.sun.glass.ui.GestureSupport$GestureState.<init>:()V
            putfield com.sun.glass.ui.GestureSupport.swiping:Lcom/sun/glass/ui/GestureSupport$GestureState;
         5: .line 80
            aload 0 /* this */
            ldc NaN
            putfield com.sun.glass.ui.GestureSupport.totalScrollX:D
         6: .line 81
            aload 0 /* this */
            ldc NaN
            putfield com.sun.glass.ui.GestureSupport.totalScrollY:D
         7: .line 82
            aload 0 /* this */
            dconst_1
            putfield com.sun.glass.ui.GestureSupport.totalScale:D
         8: .line 83
            aload 0 /* this */
            ldc NaN
            putfield com.sun.glass.ui.GestureSupport.totalExpansion:D
         9: .line 84
            aload 0 /* this */
            dconst_0
            putfield com.sun.glass.ui.GestureSupport.totalRotation:D
        10: .line 85
            aload 0 /* this */
            dconst_1
            putfield com.sun.glass.ui.GestureSupport.multiplierX:D
        11: .line 86
            aload 0 /* this */
            dconst_1
            putfield com.sun.glass.ui.GestureSupport.multiplierY:D
        12: .line 91
            aload 0 /* this */
            iload 1 /* zoomWithExpansion */
            putfield com.sun.glass.ui.GestureSupport.zoomWithExpansion:Z
        13: .line 92
            return
        end local 1 // boolean zoomWithExpansion
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   14     0               this  Lcom/sun/glass/ui/GestureSupport;
            0   14     1  zoomWithExpansion  Z
    MethodParameters:
                   Name  Flags
      zoomWithExpansion  

  private static double multiplicativeDelta(double, double);
    descriptor: (DD)D
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // double from
        start local 2 // double to
         0: .line 95
            dload 0 /* from */
            dconst_0
            dcmpl
            ifne 2
         1: .line 96
            ldc NaN
            dreturn
         2: .line 98
      StackMap locals:
      StackMap stack:
            dload 2 /* to */
            dload 0 /* from */
            ddiv
            dreturn
        end local 2 // double to
        end local 0 // double from
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  from  D
            0    3     2    to  D
    MethodParameters:
      Name  Flags
      from  
      to    

  private int setScrolling(boolean);
    descriptor: (Z)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // boolean isInertia
         0: .line 102
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.scrolling:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 1 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.updateProgress:(Z)I
            ireturn
        end local 1 // boolean isInertia
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/sun/glass/ui/GestureSupport;
            0    1     1  isInertia  Z
    MethodParameters:
           Name  Flags
      isInertia  

  private int setRotating(boolean);
    descriptor: (Z)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // boolean isInertia
         0: .line 106
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.rotating:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 1 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.updateProgress:(Z)I
            ireturn
        end local 1 // boolean isInertia
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/sun/glass/ui/GestureSupport;
            0    1     1  isInertia  Z
    MethodParameters:
           Name  Flags
      isInertia  

  private int setZooming(boolean);
    descriptor: (Z)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // boolean isInertia
         0: .line 110
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.zooming:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 1 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.updateProgress:(Z)I
            ireturn
        end local 1 // boolean isInertia
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/sun/glass/ui/GestureSupport;
            0    1     1  isInertia  Z
    MethodParameters:
           Name  Flags
      isInertia  

  private int setSwiping(boolean);
    descriptor: (Z)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // boolean isInertia
         0: .line 114
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.swiping:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 1 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.updateProgress:(Z)I
            ireturn
        end local 1 // boolean isInertia
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/sun/glass/ui/GestureSupport;
            0    1     1  isInertia  Z
    MethodParameters:
           Name  Flags
      isInertia  

  public boolean isScrolling();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.GestureSupport this
         0: .line 118
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.scrolling:Lcom/sun/glass/ui/GestureSupport$GestureState;
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.isIdle:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/glass/ui/GestureSupport;

  public boolean isRotating();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.GestureSupport this
         0: .line 122
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.rotating:Lcom/sun/glass/ui/GestureSupport$GestureState;
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.isIdle:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/glass/ui/GestureSupport;

  public boolean isZooming();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.GestureSupport this
         0: .line 126
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.zooming:Lcom/sun/glass/ui/GestureSupport$GestureState;
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.isIdle:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/glass/ui/GestureSupport;

  public boolean isSwiping();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.GestureSupport this
         0: .line 130
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.swiping:Lcom/sun/glass/ui/GestureSupport$GestureState;
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.isIdle:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/glass/ui/GestureSupport;

  public void handleScrollingEnd(com.sun.glass.ui.View, int, int, boolean, boolean, int, int, int, int);
    descriptor: (Lcom/sun/glass/ui/View;IIZZIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=22, locals=10, args_size=10
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // int touchCount
        start local 4 // boolean isDirect
        start local 5 // boolean isInertia
        start local 6 // int x
        start local 7 // int y
        start local 8 // int xAbs
        start local 9 // int yAbs
         0: .line 136
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.scrolling:Lcom/sun/glass/ui/GestureSupport$GestureState;
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.setIdle:()V
         1: .line 137
            iload 5 /* isInertia */
            ifeq 3
         2: .line 138
            return
         3: .line 140
      StackMap locals:
      StackMap stack:
            aload 1 /* view */
            iconst_3
            iload 2 /* modifiers */
         4: .line 141
            iload 4 /* isDirect */
            iload 5 /* isInertia */
            iload 3 /* touchCount */
            iload 6 /* x */
            iload 7 /* y */
         5: .line 142
            iload 8 /* xAbs */
            iload 9 /* yAbs */
            dconst_0
            dconst_0
         6: .line 143
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollX:D
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollY:D
         7: .line 144
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.multiplierX:D
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.multiplierY:D
         8: .line 140
            invokevirtual com.sun.glass.ui.View.notifyScrollGestureEvent:(IIZZIIIIIDDDDDD)V
         9: .line 145
            return
        end local 9 // int yAbs
        end local 8 // int xAbs
        end local 7 // int y
        end local 6 // int x
        end local 5 // boolean isInertia
        end local 4 // boolean isDirect
        end local 3 // int touchCount
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lcom/sun/glass/ui/GestureSupport;
            0   10     1        view  Lcom/sun/glass/ui/View;
            0   10     2   modifiers  I
            0   10     3  touchCount  I
            0   10     4    isDirect  Z
            0   10     5   isInertia  Z
            0   10     6           x  I
            0   10     7           y  I
            0   10     8        xAbs  I
            0   10     9        yAbs  I
    MethodParameters:
            Name  Flags
      view        
      modifiers   
      touchCount  
      isDirect    
      isInertia   
      x           
      y           
      xAbs        
      yAbs        

  public void handleRotationEnd(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=13, locals=9, args_size=9
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
         0: .line 150
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.rotating:Lcom/sun/glass/ui/GestureSupport$GestureState;
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.setIdle:()V
         1: .line 151
            iload 4 /* isInertia */
            ifeq 3
         2: .line 152
            return
         3: .line 154
      StackMap locals:
      StackMap stack:
            aload 1 /* view */
            iconst_3
            iload 2 /* modifiers */
         4: .line 155
            iload 3 /* isDirect */
            iload 4 /* isInertia */
            iload 5 /* x */
            iload 6 /* y */
            iload 7 /* xAbs */
            iload 8 /* yAbs */
            dconst_0
         5: .line 156
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalRotation:D
         6: .line 154
            invokevirtual com.sun.glass.ui.View.notifyRotateGestureEvent:(IIZZIIIIDD)V
         7: .line 157
            return
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lcom/sun/glass/ui/GestureSupport;
            0    8     1       view  Lcom/sun/glass/ui/View;
            0    8     2  modifiers  I
            0    8     3   isDirect  Z
            0    8     4  isInertia  Z
            0    8     5          x  I
            0    8     6          y  I
            0    8     7       xAbs  I
            0    8     8       yAbs  I
    MethodParameters:
           Name  Flags
      view       
      modifiers  
      isDirect   
      isInertia  
      x          
      y          
      xAbs       
      yAbs       

  public void handleZoomingEnd(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=17, locals=9, args_size=9
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
         0: .line 162
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.zooming:Lcom/sun/glass/ui/GestureSupport$GestureState;
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.setIdle:()V
         1: .line 163
            iload 4 /* isInertia */
            ifeq 3
         2: .line 164
            return
         3: .line 166
      StackMap locals:
      StackMap stack:
            aload 1 /* view */
            iconst_3
            iload 2 /* modifiers */
         4: .line 167
            iload 3 /* isDirect */
            iload 4 /* isInertia */
            iload 5 /* x */
            iload 6 /* y */
            iload 7 /* xAbs */
            iload 8 /* yAbs */
         5: .line 168
            ldc NaN
            dconst_0
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScale:D
         6: .line 169
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalExpansion:D
         7: .line 166
            invokevirtual com.sun.glass.ui.View.notifyZoomGestureEvent:(IIZZIIIIDDDD)V
         8: .line 170
            return
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lcom/sun/glass/ui/GestureSupport;
            0    9     1       view  Lcom/sun/glass/ui/View;
            0    9     2  modifiers  I
            0    9     3   isDirect  Z
            0    9     4  isInertia  Z
            0    9     5          x  I
            0    9     6          y  I
            0    9     7       xAbs  I
            0    9     8       yAbs  I
    MethodParameters:
           Name  Flags
      view       
      modifiers  
      isDirect   
      isInertia  
      x          
      y          
      xAbs       
      yAbs       

  public void handleSwipeEnd(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=9, args_size=9
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
         0: .line 175
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.swiping:Lcom/sun/glass/ui/GestureSupport$GestureState;
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.setIdle:()V
         1: .line 176
            iload 4 /* isInertia */
            ifeq 3
         2: .line 177
            return
         3: .line 179
      StackMap locals:
      StackMap stack:
            aload 1 /* view */
            iconst_3
            iload 2 /* modifiers */
         4: .line 180
            iload 3 /* isDirect */
            iload 4 /* isInertia */
            ldc 2147483647
         5: .line 181
            ldc 2147483647
            iload 5 /* x */
            iload 6 /* y */
            iload 7 /* xAbs */
            iload 8 /* yAbs */
         6: .line 179
            invokevirtual com.sun.glass.ui.View.notifySwipeGestureEvent:(IIZZIIIIII)V
         7: .line 182
            return
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lcom/sun/glass/ui/GestureSupport;
            0    8     1       view  Lcom/sun/glass/ui/View;
            0    8     2  modifiers  I
            0    8     3   isDirect  Z
            0    8     4  isInertia  Z
            0    8     5          x  I
            0    8     6          y  I
            0    8     7       xAbs  I
            0    8     8       yAbs  I
    MethodParameters:
           Name  Flags
      view       
      modifiers  
      isDirect   
      isInertia  
      x          
      y          
      xAbs       
      yAbs       

  public void handleTotalZooming(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, double, double);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIIDD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=17, locals=20, args_size=11
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
        start local 9 // double scale
        start local 11 // double expansion
         0: .line 188
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScale:D
            dstore 13 /* baseScale */
        start local 13 // double baseScale
         1: .line 189
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalExpansion:D
            dstore 15 /* baseExpansion */
        start local 15 // double baseExpansion
         2: .line 190
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.zooming:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.doesGestureStart:(Z)Z
            ifeq 5
         3: .line 191
            dconst_1
            dstore 13 /* baseScale */
         4: .line 192
            dconst_0
            dstore 15 /* baseExpansion */
         5: .line 195
      StackMap locals: double double
      StackMap stack:
            dload 9 /* scale */
            dload 13 /* baseScale */
            dsub
            invokestatic java.lang.Math.abs:(D)D
            ldc 0.01
            dcmpg
            ifge 9
         6: .line 196
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.zoomWithExpansion:Z
            ifeq 8
         7: .line 197
            dload 11 /* expansion */
            dload 15 /* baseExpansion */
            dsub
            invokestatic java.lang.Math.abs:(D)D
            ldc 0.01
            dcmpg
            ifge 9
         8: .line 198
      StackMap locals:
      StackMap stack:
            return
         9: .line 201
      StackMap locals:
      StackMap stack:
            ldc NaN
            dstore 17 /* deltaExpansion */
        start local 17 // double deltaExpansion
        10: .line 202
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.zoomWithExpansion:Z
            ifeq 13
        11: .line 203
            dload 11 /* expansion */
            dload 15 /* baseExpansion */
            dsub
            dstore 17 /* deltaExpansion */
        12: .line 204
            goto 14
        13: .line 205
      StackMap locals: double
      StackMap stack:
            ldc NaN
            dstore 11 /* expansion */
        14: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* scale */
            putfield com.sun.glass.ui.GestureSupport.totalScale:D
        15: .line 209
            aload 0 /* this */
            dload 11 /* expansion */
            putfield com.sun.glass.ui.GestureSupport.totalExpansion:D
        16: .line 210
            aload 0 /* this */
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport.setZooming:(Z)I
            istore 19 /* eventID */
        start local 19 // int eventID
        17: .line 212
            aload 1 /* view */
            iload 19 /* eventID */
            iload 2 /* modifiers */
            iload 3 /* isDirect */
            iload 4 /* isInertia */
            iload 5 /* x */
        18: .line 213
            iload 6 /* y */
            iload 7 /* xAbs */
            iload 8 /* yAbs */
        19: .line 214
            dload 13 /* baseScale */
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScale:D
            invokestatic com.sun.glass.ui.GestureSupport.multiplicativeDelta:(DD)D
        20: .line 215
            dload 17 /* deltaExpansion */
            dload 9 /* scale */
            dload 11 /* expansion */
        21: .line 212
            invokevirtual com.sun.glass.ui.View.notifyZoomGestureEvent:(IIZZIIIIDDDD)V
        22: .line 216
            return
        end local 19 // int eventID
        end local 17 // double deltaExpansion
        end local 15 // double baseExpansion
        end local 13 // double baseScale
        end local 11 // double expansion
        end local 9 // double scale
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   23     0            this  Lcom/sun/glass/ui/GestureSupport;
            0   23     1            view  Lcom/sun/glass/ui/View;
            0   23     2       modifiers  I
            0   23     3        isDirect  Z
            0   23     4       isInertia  Z
            0   23     5               x  I
            0   23     6               y  I
            0   23     7            xAbs  I
            0   23     8            yAbs  I
            0   23     9           scale  D
            0   23    11       expansion  D
            1   23    13       baseScale  D
            2   23    15   baseExpansion  D
           10   23    17  deltaExpansion  D
           17   23    19         eventID  I
    MethodParameters:
           Name  Flags
      view       
      modifiers  
      isDirect   
      isInertia  
      x          
      y          
      xAbs       
      yAbs       
      scale      
      expansion  

  public void handleTotalRotation(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, double);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=13, locals=14, args_size=10
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
        start local 9 // double rotation
         0: .line 222
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalRotation:D
            dstore 11 /* baseRotation */
        start local 11 // double baseRotation
         1: .line 223
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.rotating:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.doesGestureStart:(Z)Z
            ifeq 3
         2: .line 224
            dconst_0
            dstore 11 /* baseRotation */
         3: .line 227
      StackMap locals: double
      StackMap stack:
            dload 9 /* rotation */
            dload 11 /* baseRotation */
            dsub
            invokestatic java.lang.Math.abs:(D)D
            getstatic com.sun.glass.ui.GestureSupport.THRESHOLD_ROTATE:D
            dcmpg
            ifge 5
         4: .line 228
            return
         5: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 9 /* rotation */
            putfield com.sun.glass.ui.GestureSupport.totalRotation:D
         6: .line 232
            aload 0 /* this */
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport.setRotating:(Z)I
            istore 13 /* eventID */
        start local 13 // int eventID
         7: .line 234
            aload 1 /* view */
            iload 13 /* eventID */
            iload 2 /* modifiers */
            iload 3 /* isDirect */
            iload 4 /* isInertia */
            iload 5 /* x */
         8: .line 235
            iload 6 /* y */
            iload 7 /* xAbs */
            iload 8 /* yAbs */
            dload 9 /* rotation */
            dload 11 /* baseRotation */
            dsub
         9: .line 236
            dload 9 /* rotation */
        10: .line 234
            invokevirtual com.sun.glass.ui.View.notifyRotateGestureEvent:(IIZZIIIIDD)V
        11: .line 237
            return
        end local 13 // int eventID
        end local 11 // double baseRotation
        end local 9 // double rotation
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lcom/sun/glass/ui/GestureSupport;
            0   12     1          view  Lcom/sun/glass/ui/View;
            0   12     2     modifiers  I
            0   12     3      isDirect  Z
            0   12     4     isInertia  Z
            0   12     5             x  I
            0   12     6             y  I
            0   12     7          xAbs  I
            0   12     8          yAbs  I
            0   12     9      rotation  D
            1   12    11  baseRotation  D
            7   12    13       eventID  I
    MethodParameters:
           Name  Flags
      view       
      modifiers  
      isDirect   
      isInertia  
      x          
      y          
      xAbs       
      yAbs       
      rotation   

  public void handleTotalScrolling(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, int, double, double, double, double);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIIIDDDD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=22, locals=23, args_size=14
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int touchCount
        start local 6 // int x
        start local 7 // int y
        start local 8 // int xAbs
        start local 9 // int yAbs
        start local 10 // double dx
        start local 12 // double dy
        start local 14 // double multiplierX
        start local 16 // double multiplierY
         0: .line 244
            aload 0 /* this */
            dload 14 /* multiplierX */
            putfield com.sun.glass.ui.GestureSupport.multiplierX:D
         1: .line 245
            aload 0 /* this */
            dload 16 /* multiplierY */
            putfield com.sun.glass.ui.GestureSupport.multiplierY:D
         2: .line 247
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollX:D
            dstore 18 /* baseScrollX */
        start local 18 // double baseScrollX
         3: .line 248
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollY:D
            dstore 20 /* baseScrollY */
        start local 20 // double baseScrollY
         4: .line 249
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.scrolling:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.doesGestureStart:(Z)Z
            ifeq 7
         5: .line 250
            dconst_0
            dstore 18 /* baseScrollX */
         6: .line 251
            dconst_0
            dstore 20 /* baseScrollY */
         7: .line 254
      StackMap locals: double double
      StackMap stack:
            dload 10 /* dx */
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollX:D
            dsub
            invokestatic java.lang.Math.abs:(D)D
            dconst_1
            dcmpg
            ifge 10
         8: .line 255
            dload 12 /* dy */
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollY:D
            dsub
            invokestatic java.lang.Math.abs:(D)D
            dconst_1
            dcmpg
            ifge 10
         9: .line 256
            return
        10: .line 259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 10 /* dx */
            putfield com.sun.glass.ui.GestureSupport.totalScrollX:D
        11: .line 260
            aload 0 /* this */
            dload 12 /* dy */
            putfield com.sun.glass.ui.GestureSupport.totalScrollY:D
        12: .line 261
            aload 0 /* this */
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport.setScrolling:(Z)I
            istore 22 /* eventID */
        start local 22 // int eventID
        13: .line 263
            aload 1 /* view */
            iload 22 /* eventID */
            iload 2 /* modifiers */
            iload 3 /* isDirect */
            iload 4 /* isInertia */
        14: .line 264
            iload 5 /* touchCount */
            iload 6 /* x */
            iload 7 /* y */
            iload 8 /* xAbs */
            iload 9 /* yAbs */
        15: .line 265
            dload 10 /* dx */
            dload 18 /* baseScrollX */
            dsub
        16: .line 266
            dload 12 /* dy */
            dload 20 /* baseScrollY */
            dsub
            dload 10 /* dx */
            dload 12 /* dy */
        17: .line 267
            dload 14 /* multiplierX */
            dload 16 /* multiplierY */
        18: .line 263
            invokevirtual com.sun.glass.ui.View.notifyScrollGestureEvent:(IIZZIIIIIDDDDDD)V
        19: .line 268
            return
        end local 22 // int eventID
        end local 20 // double baseScrollY
        end local 18 // double baseScrollX
        end local 16 // double multiplierY
        end local 14 // double multiplierX
        end local 12 // double dy
        end local 10 // double dx
        end local 9 // int yAbs
        end local 8 // int xAbs
        end local 7 // int y
        end local 6 // int x
        end local 5 // int touchCount
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   20     0         this  Lcom/sun/glass/ui/GestureSupport;
            0   20     1         view  Lcom/sun/glass/ui/View;
            0   20     2    modifiers  I
            0   20     3     isDirect  Z
            0   20     4    isInertia  Z
            0   20     5   touchCount  I
            0   20     6            x  I
            0   20     7            y  I
            0   20     8         xAbs  I
            0   20     9         yAbs  I
            0   20    10           dx  D
            0   20    12           dy  D
            0   20    14  multiplierX  D
            0   20    16  multiplierY  D
            3   20    18  baseScrollX  D
            4   20    20  baseScrollY  D
           13   20    22      eventID  I
    MethodParameters:
             Name  Flags
      view         
      modifiers    
      isDirect     
      isInertia    
      touchCount   
      x            
      y            
      xAbs         
      yAbs         
      dx           
      dy           
      multiplierX  
      multiplierY  

  public void handleDeltaZooming(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, double, double);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIIDD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=17, locals=18, args_size=11
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
        start local 9 // double scale
        start local 11 // double expansion
         0: .line 274
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScale:D
            dstore 13 /* baseScale */
        start local 13 // double baseScale
         1: .line 275
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalExpansion:D
            dstore 15 /* baseExpansion */
        start local 15 // double baseExpansion
         2: .line 276
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.zooming:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.doesGestureStart:(Z)Z
            ifeq 5
         3: .line 277
            dconst_1
            dstore 13 /* baseScale */
         4: .line 278
            dconst_0
            dstore 15 /* baseExpansion */
         5: .line 287
      StackMap locals: double double
      StackMap stack:
            aload 0 /* this */
            dload 13 /* baseScale */
            dconst_1
            dload 9 /* scale */
            dadd
            dmul
            putfield com.sun.glass.ui.GestureSupport.totalScale:D
         6: .line 288
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.zoomWithExpansion:Z
            ifeq 9
         7: .line 289
            aload 0 /* this */
            dload 15 /* baseExpansion */
            dload 11 /* expansion */
            dadd
            putfield com.sun.glass.ui.GestureSupport.totalExpansion:D
         8: .line 290
            goto 10
         9: .line 291
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc NaN
            putfield com.sun.glass.ui.GestureSupport.totalExpansion:D
        10: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport.setZooming:(Z)I
            istore 17 /* eventID */
        start local 17 // int eventID
        11: .line 296
            aload 1 /* view */
            iload 17 /* eventID */
            iload 2 /* modifiers */
            iload 3 /* isDirect */
            iload 4 /* isInertia */
            iload 5 /* x */
        12: .line 297
            iload 6 /* y */
            iload 7 /* xAbs */
            iload 8 /* yAbs */
        13: .line 298
            dload 13 /* baseScale */
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScale:D
            invokestatic com.sun.glass.ui.GestureSupport.multiplicativeDelta:(DD)D
        14: .line 299
            dload 11 /* expansion */
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScale:D
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalExpansion:D
        15: .line 296
            invokevirtual com.sun.glass.ui.View.notifyZoomGestureEvent:(IIZZIIIIDDDD)V
        16: .line 300
            return
        end local 17 // int eventID
        end local 15 // double baseExpansion
        end local 13 // double baseScale
        end local 11 // double expansion
        end local 9 // double scale
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lcom/sun/glass/ui/GestureSupport;
            0   17     1           view  Lcom/sun/glass/ui/View;
            0   17     2      modifiers  I
            0   17     3       isDirect  Z
            0   17     4      isInertia  Z
            0   17     5              x  I
            0   17     6              y  I
            0   17     7           xAbs  I
            0   17     8           yAbs  I
            0   17     9          scale  D
            0   17    11      expansion  D
            1   17    13      baseScale  D
            2   17    15  baseExpansion  D
           11   17    17        eventID  I
    MethodParameters:
           Name  Flags
      view       
      modifiers  
      isDirect   
      isInertia  
      x          
      y          
      xAbs       
      yAbs       
      scale      
      expansion  

  public void handleDeltaRotation(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, double);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=13, locals=14, args_size=10
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
        start local 9 // double rotation
         0: .line 306
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalRotation:D
            dstore 11 /* baseRotation */
        start local 11 // double baseRotation
         1: .line 307
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.rotating:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.doesGestureStart:(Z)Z
            ifeq 3
         2: .line 308
            dconst_0
            dstore 11 /* baseRotation */
         3: .line 311
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            dload 11 /* baseRotation */
            dload 9 /* rotation */
            dadd
            putfield com.sun.glass.ui.GestureSupport.totalRotation:D
         4: .line 312
            aload 0 /* this */
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport.setRotating:(Z)I
            istore 13 /* eventID */
        start local 13 // int eventID
         5: .line 314
            aload 1 /* view */
            iload 13 /* eventID */
            iload 2 /* modifiers */
            iload 3 /* isDirect */
            iload 4 /* isInertia */
            iload 5 /* x */
         6: .line 315
            iload 6 /* y */
            iload 7 /* xAbs */
            iload 8 /* yAbs */
            dload 9 /* rotation */
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalRotation:D
         7: .line 314
            invokevirtual com.sun.glass.ui.View.notifyRotateGestureEvent:(IIZZIIIIDD)V
         8: .line 316
            return
        end local 13 // int eventID
        end local 11 // double baseRotation
        end local 9 // double rotation
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lcom/sun/glass/ui/GestureSupport;
            0    9     1          view  Lcom/sun/glass/ui/View;
            0    9     2     modifiers  I
            0    9     3      isDirect  Z
            0    9     4     isInertia  Z
            0    9     5             x  I
            0    9     6             y  I
            0    9     7          xAbs  I
            0    9     8          yAbs  I
            0    9     9      rotation  D
            1    9    11  baseRotation  D
            5    9    13       eventID  I
    MethodParameters:
           Name  Flags
      view       
      modifiers  
      isDirect   
      isInertia  
      x          
      y          
      xAbs       
      yAbs       
      rotation   

  public void handleDeltaScrolling(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, int, double, double, double, double);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIIIDDDD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=22, locals=23, args_size=14
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int touchCount
        start local 6 // int x
        start local 7 // int y
        start local 8 // int xAbs
        start local 9 // int yAbs
        start local 10 // double dx
        start local 12 // double dy
        start local 14 // double multiplierX
        start local 16 // double multiplierY
         0: .line 323
            aload 0 /* this */
            dload 14 /* multiplierX */
            putfield com.sun.glass.ui.GestureSupport.multiplierX:D
         1: .line 324
            aload 0 /* this */
            dload 16 /* multiplierY */
            putfield com.sun.glass.ui.GestureSupport.multiplierY:D
         2: .line 326
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollX:D
            dstore 18 /* baseScrollX */
        start local 18 // double baseScrollX
         3: .line 327
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollY:D
            dstore 20 /* baseScrollY */
        start local 20 // double baseScrollY
         4: .line 328
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.scrolling:Lcom/sun/glass/ui/GestureSupport$GestureState;
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport$GestureState.doesGestureStart:(Z)Z
            ifeq 7
         5: .line 329
            dconst_0
            dstore 18 /* baseScrollX */
         6: .line 330
            dconst_0
            dstore 20 /* baseScrollY */
         7: .line 333
      StackMap locals: double double
      StackMap stack:
            aload 0 /* this */
            dload 18 /* baseScrollX */
            dload 10 /* dx */
            dadd
            putfield com.sun.glass.ui.GestureSupport.totalScrollX:D
         8: .line 334
            aload 0 /* this */
            dload 20 /* baseScrollY */
            dload 12 /* dy */
            dadd
            putfield com.sun.glass.ui.GestureSupport.totalScrollY:D
         9: .line 336
            aload 0 /* this */
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport.setScrolling:(Z)I
            istore 22 /* eventID */
        start local 22 // int eventID
        10: .line 338
            aload 1 /* view */
            iload 22 /* eventID */
            iload 2 /* modifiers */
            iload 3 /* isDirect */
            iload 4 /* isInertia */
        11: .line 339
            iload 5 /* touchCount */
            iload 6 /* x */
            iload 7 /* y */
            iload 8 /* xAbs */
            iload 9 /* yAbs */
            dload 10 /* dx */
            dload 12 /* dy */
        12: .line 340
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollX:D
            aload 0 /* this */
            getfield com.sun.glass.ui.GestureSupport.totalScrollY:D
        13: .line 341
            dload 14 /* multiplierX */
            dload 16 /* multiplierY */
        14: .line 338
            invokevirtual com.sun.glass.ui.View.notifyScrollGestureEvent:(IIZZIIIIIDDDDDD)V
        15: .line 342
            return
        end local 22 // int eventID
        end local 20 // double baseScrollY
        end local 18 // double baseScrollX
        end local 16 // double multiplierY
        end local 14 // double multiplierX
        end local 12 // double dy
        end local 10 // double dx
        end local 9 // int yAbs
        end local 8 // int xAbs
        end local 7 // int y
        end local 6 // int x
        end local 5 // int touchCount
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0         this  Lcom/sun/glass/ui/GestureSupport;
            0   16     1         view  Lcom/sun/glass/ui/View;
            0   16     2    modifiers  I
            0   16     3     isDirect  Z
            0   16     4    isInertia  Z
            0   16     5   touchCount  I
            0   16     6            x  I
            0   16     7            y  I
            0   16     8         xAbs  I
            0   16     9         yAbs  I
            0   16    10           dx  D
            0   16    12           dy  D
            0   16    14  multiplierX  D
            0   16    16  multiplierY  D
            3   16    18  baseScrollX  D
            4   16    20  baseScrollY  D
           10   16    22      eventID  I
    MethodParameters:
             Name  Flags
      view         
      modifiers    
      isDirect     
      isInertia    
      touchCount   
      x            
      y            
      xAbs         
      yAbs         
      dx           
      dy           
      multiplierX  
      multiplierY  

  public void handleSwipe(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, int, int);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=12, args_size=11
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.View view
        start local 2 // int modifiers
        start local 3 // boolean isDirect
        start local 4 // boolean isInertia
        start local 5 // int touchCount
        start local 6 // int dir
        start local 7 // int x
        start local 8 // int y
        start local 9 // int xAbs
        start local 10 // int yAbs
         0: .line 347
            aload 0 /* this */
            iload 4 /* isInertia */
            invokevirtual com.sun.glass.ui.GestureSupport.setSwiping:(Z)I
            istore 11 /* eventID */
        start local 11 // int eventID
         1: .line 348
            aload 1 /* view */
            iload 11 /* eventID */
            iload 2 /* modifiers */
            iload 3 /* isDirect */
            iload 4 /* isInertia */
         2: .line 349
            iload 5 /* touchCount */
            iload 6 /* dir */
            iload 7 /* x */
            iload 8 /* y */
            iload 9 /* xAbs */
            iload 10 /* yAbs */
         3: .line 348
            invokevirtual com.sun.glass.ui.View.notifySwipeGestureEvent:(IIZZIIIIII)V
         4: .line 350
            return
        end local 11 // int eventID
        end local 10 // int yAbs
        end local 9 // int xAbs
        end local 8 // int y
        end local 7 // int x
        end local 6 // int dir
        end local 5 // int touchCount
        end local 4 // boolean isInertia
        end local 3 // boolean isDirect
        end local 2 // int modifiers
        end local 1 // com.sun.glass.ui.View view
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/sun/glass/ui/GestureSupport;
            0    5     1        view  Lcom/sun/glass/ui/View;
            0    5     2   modifiers  I
            0    5     3    isDirect  Z
            0    5     4   isInertia  Z
            0    5     5  touchCount  I
            0    5     6         dir  I
            0    5     7           x  I
            0    5     8           y  I
            0    5     9        xAbs  I
            0    5    10        yAbs  I
            1    5    11     eventID  I
    MethodParameters:
            Name  Flags
      view        
      modifiers   
      isDirect    
      isInertia   
      touchCount  
      dir         
      x           
      y           
      xAbs        
      yAbs        

  public static void handleSwipePerformed(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, int, int);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIIII)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=11, locals=10, args_size=10
        start local 0 // com.sun.glass.ui.View view
        start local 1 // int modifiers
        start local 2 // boolean isDirect
        start local 3 // boolean isInertia
        start local 4 // int touchCount
        start local 5 // int dir
        start local 6 // int x
        start local 7 // int y
        start local 8 // int xAbs
        start local 9 // int yAbs
         0: .line 356
            aload 0 /* view */
            iconst_2
            iload 1 /* modifiers */
         1: .line 357
            iload 2 /* isDirect */
            iload 3 /* isInertia */
            iload 4 /* touchCount */
            iload 5 /* dir */
            iload 6 /* x */
            iload 7 /* y */
         2: .line 358
            iload 8 /* xAbs */
            iload 9 /* yAbs */
         3: .line 356
            invokevirtual com.sun.glass.ui.View.notifySwipeGestureEvent:(IIZZIIIIII)V
         4: .line 359
            return
        end local 9 // int yAbs
        end local 8 // int xAbs
        end local 7 // int y
        end local 6 // int x
        end local 5 // int dir
        end local 4 // int touchCount
        end local 3 // boolean isInertia
        end local 2 // boolean isDirect
        end local 1 // int modifiers
        end local 0 // com.sun.glass.ui.View view
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        view  Lcom/sun/glass/ui/View;
            0    5     1   modifiers  I
            0    5     2    isDirect  Z
            0    5     3   isInertia  Z
            0    5     4  touchCount  I
            0    5     5         dir  I
            0    5     6           x  I
            0    5     7           y  I
            0    5     8        xAbs  I
            0    5     9        yAbs  I
    MethodParameters:
            Name  Flags
      view        
      modifiers   
      isDirect    
      isInertia   
      touchCount  
      dir         
      x           
      y           
      xAbs        
      yAbs        

  public static void handleScrollingPerformed(com.sun.glass.ui.View, int, boolean, boolean, int, int, int, int, int, double, double, double, double);
    descriptor: (Lcom/sun/glass/ui/View;IZZIIIIIDDDD)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=22, locals=17, args_size=13
        start local 0 // com.sun.glass.ui.View view
        start local 1 // int modifiers
        start local 2 // boolean isDirect
        start local 3 // boolean isInertia
        start local 4 // int touchCount
        start local 5 // int x
        start local 6 // int y
        start local 7 // int xAbs
        start local 8 // int yAbs
        start local 9 // double dx
        start local 11 // double dy
        start local 13 // double multiplierX
        start local 15 // double multiplierY
         0: .line 368
            aload 0 /* view */
            iconst_2
            iload 1 /* modifiers */
         1: .line 369
            iload 2 /* isDirect */
            iload 3 /* isInertia */
            iload 4 /* touchCount */
            iload 5 /* x */
            iload 6 /* y */
         2: .line 370
            iload 7 /* xAbs */
            iload 8 /* yAbs */
            dload 9 /* dx */
            dload 11 /* dy */
            dload 9 /* dx */
            dload 11 /* dy */
            dload 13 /* multiplierX */
            dload 15 /* multiplierY */
         3: .line 368
            invokevirtual com.sun.glass.ui.View.notifyScrollGestureEvent:(IIZZIIIIIDDDDDD)V
         4: .line 371
            return
        end local 15 // double multiplierY
        end local 13 // double multiplierX
        end local 11 // double dy
        end local 9 // double dx
        end local 8 // int yAbs
        end local 7 // int xAbs
        end local 6 // int y
        end local 5 // int x
        end local 4 // int touchCount
        end local 3 // boolean isInertia
        end local 2 // boolean isDirect
        end local 1 // int modifiers
        end local 0 // com.sun.glass.ui.View view
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         view  Lcom/sun/glass/ui/View;
            0    5     1    modifiers  I
            0    5     2     isDirect  Z
            0    5     3    isInertia  Z
            0    5     4   touchCount  I
            0    5     5            x  I
            0    5     6            y  I
            0    5     7         xAbs  I
            0    5     8         yAbs  I
            0    5     9           dx  D
            0    5    11           dy  D
            0    5    13  multiplierX  D
            0    5    15  multiplierY  D
    MethodParameters:
             Name  Flags
      view         
      modifiers    
      isDirect     
      isInertia    
      touchCount   
      x            
      y            
      xAbs         
      yAbs         
      dx           
      dy           
      multiplierX  
      multiplierY  

  public com.sun.glass.ui.TouchInputSupport$TouchCountListener createTouchCountListener();
    descriptor: ()Lcom/sun/glass/ui/TouchInputSupport$TouchCountListener;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.GestureSupport this
         0: .line 374
            invokestatic com.sun.glass.ui.Application.checkEventThread:()V
         1: .line 375
            aload 0 /* this */
            invokedynamic touchCountChanged(Lcom/sun/glass/ui/GestureSupport;)Lcom/sun/glass/ui/TouchInputSupport$TouchCountListener;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lcom/sun/glass/ui/TouchInputSupport;Lcom/sun/glass/ui/View;IZ)V
                  com/sun/glass/ui/GestureSupport.lambda$0(Lcom/sun/glass/ui/TouchInputSupport;Lcom/sun/glass/ui/View;IZ)V (7)
                  (Lcom/sun/glass/ui/TouchInputSupport;Lcom/sun/glass/ui/View;IZ)V
            areturn
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/glass/ui/GestureSupport;

  private void lambda$0(com.sun.glass.ui.TouchInputSupport, com.sun.glass.ui.View, int, boolean);
    descriptor: (Lcom/sun/glass/ui/TouchInputSupport;Lcom/sun/glass/ui/View;IZ)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=10, locals=5, args_size=5
        start local 0 // com.sun.glass.ui.GestureSupport this
        start local 1 // com.sun.glass.ui.TouchInputSupport sender
        start local 2 // com.sun.glass.ui.View view
        start local 3 // int modifiers
        start local 4 // boolean isDirect
         0: .line 378
            aload 0 /* this */
            invokevirtual com.sun.glass.ui.GestureSupport.isScrolling:()Z
            ifeq 8
         1: .line 379
            aload 0 /* this */
            aload 2 /* view */
            iload 3 /* modifiers */
            aload 1 /* sender */
            invokevirtual com.sun.glass.ui.TouchInputSupport.getTouchCount:()I
         2: .line 380
            iload 4 /* isDirect */
            iconst_0
         3: .line 381
            ldc 2147483647
         4: .line 382
            ldc 2147483647
         5: .line 383
            ldc 2147483647
         6: .line 384
            ldc 2147483647
         7: .line 379
            invokevirtual com.sun.glass.ui.GestureSupport.handleScrollingEnd:(Lcom/sun/glass/ui/View;IIZZIIII)V
         8: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.glass.ui.GestureSupport.isRotating:()Z
            ifeq 15
         9: .line 388
            aload 0 /* this */
            aload 2 /* view */
            iload 3 /* modifiers */
            iload 4 /* isDirect */
            iconst_0
        10: .line 389
            ldc 2147483647
        11: .line 390
            ldc 2147483647
        12: .line 391
            ldc 2147483647
        13: .line 392
            ldc 2147483647
        14: .line 388
            invokevirtual com.sun.glass.ui.GestureSupport.handleRotationEnd:(Lcom/sun/glass/ui/View;IZZIIII)V
        15: .line 395
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.glass.ui.GestureSupport.isZooming:()Z
            ifeq 22
        16: .line 396
            aload 0 /* this */
            aload 2 /* view */
            iload 3 /* modifiers */
            iload 4 /* isDirect */
            iconst_0
        17: .line 397
            ldc 2147483647
        18: .line 398
            ldc 2147483647
        19: .line 399
            ldc 2147483647
        20: .line 400
            ldc 2147483647
        21: .line 396
            invokevirtual com.sun.glass.ui.GestureSupport.handleZoomingEnd:(Lcom/sun/glass/ui/View;IZZIIII)V
        22: .line 402
      StackMap locals:
      StackMap stack:
            return
        end local 4 // boolean isDirect
        end local 3 // int modifiers
        end local 2 // com.sun.glass.ui.View view
        end local 1 // com.sun.glass.ui.TouchInputSupport sender
        end local 0 // com.sun.glass.ui.GestureSupport this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lcom/sun/glass/ui/GestureSupport;
            0   23     1     sender  Lcom/sun/glass/ui/TouchInputSupport;
            0   23     2       view  Lcom/sun/glass/ui/View;
            0   23     3  modifiers  I
            0   23     4   isDirect  Z
}
SourceFile: "GestureSupport.java"
NestMembers:
  com.sun.glass.ui.GestureSupport$GestureState  com.sun.glass.ui.GestureSupport$GestureState$StateId
InnerClasses:
  private GestureState = com.sun.glass.ui.GestureSupport$GestureState of com.sun.glass.ui.GestureSupport
  public abstract TouchCountListener = com.sun.glass.ui.TouchInputSupport$TouchCountListener of com.sun.glass.ui.TouchInputSupport
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles