public class android.gesture.GesturePoint
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.gesture.GesturePoint
  super_class: java.lang.Object
{
  public final float x;
    descriptor: F
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final float y;
    descriptor: F
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public final long timestamp;
    descriptor: J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public void <init>(float, float, long);
    descriptor: (FFJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // android.gesture.GesturePoint this
        start local 1 // float x
        start local 2 // float y
        start local 3 // long t
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            fload 1 /* x */
            putfield android.gesture.GesturePoint.x:F
         2: .line 34
            aload 0 /* this */
            fload 2 /* y */
            putfield android.gesture.GesturePoint.y:F
         3: .line 35
            aload 0 /* this */
            lload 3 /* t */
            putfield android.gesture.GesturePoint.timestamp:J
         4: .line 36
            return
        end local 3 // long t
        end local 2 // float y
        end local 1 // float x
        end local 0 // android.gesture.GesturePoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/gesture/GesturePoint;
            0    5     1     x  F
            0    5     2     y  F
            0    5     3     t  J
    MethodParameters:
      Name  Flags
      x     
      y     
      t     

  static android.gesture.GesturePoint deserialize(java.io.DataInputStream);
    descriptor: (Ljava/io/DataInputStream;)Landroid/gesture/GesturePoint;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // java.io.DataInputStream in
         0: .line 40
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readFloat:()F
            fstore 1 /* x */
        start local 1 // float x
         1: .line 41
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readFloat:()F
            fstore 2 /* y */
        start local 2 // float y
         2: .line 43
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readLong:()J
            lstore 3 /* timeStamp */
        start local 3 // long timeStamp
         3: .line 44
            new android.gesture.GesturePoint
            dup
            fload 1 /* x */
            fload 2 /* y */
            lload 3 /* timeStamp */
            invokespecial android.gesture.GesturePoint.<init>:(FFJ)V
            areturn
        end local 3 // long timeStamp
        end local 2 // float y
        end local 1 // float x
        end local 0 // java.io.DataInputStream in
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0         in  Ljava/io/DataInputStream;
            1    4     1          x  F
            2    4     2          y  F
            3    4     3  timeStamp  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // android.gesture.GesturePoint this
         0: .line 49
            new android.gesture.GesturePoint
            dup
            aload 0 /* this */
            getfield android.gesture.GesturePoint.x:F
            aload 0 /* this */
            getfield android.gesture.GesturePoint.y:F
            aload 0 /* this */
            getfield android.gesture.GesturePoint.timestamp:J
            invokespecial android.gesture.GesturePoint.<init>:(FFJ)V
            areturn
        end local 0 // android.gesture.GesturePoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/gesture/GesturePoint;
}
SourceFile: "GesturePoint.java"