class com.sun.glass.ui.monocle.DispmanCursor extends com.sun.glass.ui.monocle.NativeCursor
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.glass.ui.monocle.DispmanCursor
  super_class: com.sun.glass.ui.monocle.NativeCursor
{
  private static final int CURSOR_WIDTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  private static final int CURSOR_HEIGHT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  private native void _initDispmanCursor(int, int);
    descriptor: (II)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    MethodParameters:
              Name  Flags
      cursorWidth   
      cursorHeight  

  private native void _setVisible(boolean);
    descriptor: (Z)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    MethodParameters:
         Name  Flags
      visible  

  private native void _setLocation(int, int);
    descriptor: (II)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    MethodParameters:
      Name  Flags
      x     
      y     

  private native void _setImage(byte[]);
    descriptor: ([B)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    MethodParameters:
             Name  Flags
      cursorImage  

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.monocle.DispmanCursor this
         0: .line 44
            aload 0 /* this */
            invokespecial com.sun.glass.ui.monocle.NativeCursor.<init>:()V
         1: .line 45
            aload 0 /* this */
            bipush 16
            bipush 16
            invokevirtual com.sun.glass.ui.monocle.DispmanCursor._initDispmanCursor:(II)V
         2: .line 46
            return
        end local 0 // com.sun.glass.ui.monocle.DispmanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/glass/ui/monocle/DispmanCursor;

  com.sun.glass.ui.Size getBestSize();
    descriptor: ()Lcom/sun/glass/ui/Size;
    flags: (0x0000) 
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.monocle.DispmanCursor this
         0: .line 50
            new com.sun.glass.ui.Size
            dup
            bipush 16
            bipush 16
            invokespecial com.sun.glass.ui.Size.<init>:(II)V
            areturn
        end local 0 // com.sun.glass.ui.monocle.DispmanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/glass/ui/monocle/DispmanCursor;

  void setVisibility(boolean);
    descriptor: (Z)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.monocle.DispmanCursor this
        start local 1 // boolean visibility
         0: .line 55
            aload 0 /* this */
            iload 1 /* visibility */
            putfield com.sun.glass.ui.monocle.DispmanCursor.isVisible:Z
         1: .line 56
            aload 0 /* this */
            iload 1 /* visibility */
            invokevirtual com.sun.glass.ui.monocle.DispmanCursor._setVisible:(Z)V
         2: .line 57
            return
        end local 1 // boolean visibility
        end local 0 // com.sun.glass.ui.monocle.DispmanCursor this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/sun/glass/ui/monocle/DispmanCursor;
            0    3     1  visibility  Z
    MethodParameters:
            Name  Flags
      visibility  

  private void updateImage(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.monocle.DispmanCursor this
        start local 1 // boolean always
         0: .line 60
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "DispmanCursor.updateImage: not implemented"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 61
            return
        end local 1 // boolean always
        end local 0 // com.sun.glass.ui.monocle.DispmanCursor this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/sun/glass/ui/monocle/DispmanCursor;
            0    2     1  always  Z
    MethodParameters:
        Name  Flags
      always  

  void setImage(byte[]);
    descriptor: ([B)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.glass.ui.monocle.DispmanCursor this
        start local 1 // byte[] cursorImage
         0: .line 65
            aload 0 /* this */
            aload 1 /* cursorImage */
            invokevirtual com.sun.glass.ui.monocle.DispmanCursor._setImage:([B)V
         1: .line 66
            return
        end local 1 // byte[] cursorImage
        end local 0 // com.sun.glass.ui.monocle.DispmanCursor this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lcom/sun/glass/ui/monocle/DispmanCursor;
            0    2     1  cursorImage  [B
    MethodParameters:
             Name  Flags
      cursorImage  

  void setLocation(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.glass.ui.monocle.DispmanCursor this
        start local 1 // int x
        start local 2 // int y
         0: .line 70
            aload 0 /* this */
            iload 1 /* x */
            iload 2 /* y */
            invokevirtual com.sun.glass.ui.monocle.DispmanCursor._setLocation:(II)V
         1: .line 71
            return
        end local 2 // int y
        end local 1 // int x
        end local 0 // com.sun.glass.ui.monocle.DispmanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/glass/ui/monocle/DispmanCursor;
            0    2     1     x  I
            0    2     2     y  I
    MethodParameters:
      Name  Flags
      x     
      y     

  void setHotSpot(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // com.sun.glass.ui.monocle.DispmanCursor this
        start local 1 // int hotspotX
        start local 2 // int hotspotY
         0: .line 75
            return
        end local 2 // int hotspotY
        end local 1 // int hotspotX
        end local 0 // com.sun.glass.ui.monocle.DispmanCursor this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/sun/glass/ui/monocle/DispmanCursor;
            0    1     1  hotspotX  I
            0    1     2  hotspotY  I
    MethodParameters:
          Name  Flags
      hotspotX  
      hotspotY  

  void shutdown();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.monocle.DispmanCursor this
         0: .line 79
            return
        end local 0 // com.sun.glass.ui.monocle.DispmanCursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/glass/ui/monocle/DispmanCursor;
}
SourceFile: "DispmanCursor.java"