final class sun.lwawt.LWCheckboxPeer extends sun.lwawt.LWComponentPeer<java.awt.Checkbox, sun.lwawt.LWCheckboxPeer$CheckboxDelegate> implements java.awt.peer.CheckboxPeer, java.awt.event.ItemListener
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.lwawt.LWCheckboxPeer
  super_class: sun.lwawt.LWComponentPeer
{
  void <init>(java.awt.Checkbox, sun.lwawt.PlatformComponent);
    descriptor: (Ljava/awt/Checkbox;Lsun/lwawt/PlatformComponent;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.lwawt.LWCheckboxPeer this
        start local 1 // java.awt.Checkbox target
        start local 2 // sun.lwawt.PlatformComponent platformComponent
         0: .line 55
            aload 0 /* this */
            aload 1 /* target */
            aload 2 /* platformComponent */
            invokespecial sun.lwawt.LWComponentPeer.<init>:(Ljava/awt/Component;Lsun/lwawt/PlatformComponent;)V
         1: .line 56
            return
        end local 2 // sun.lwawt.PlatformComponent platformComponent
        end local 1 // java.awt.Checkbox target
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lsun/lwawt/LWCheckboxPeer;
            0    2     1             target  Ljava/awt/Checkbox;
            0    2     2  platformComponent  Lsun/lwawt/PlatformComponent;
    MethodParameters:
                   Name  Flags
      target             final
      platformComponent  final

  sun.lwawt.LWCheckboxPeer$CheckboxDelegate createDelegate();
    descriptor: ()Lsun/lwawt/LWCheckboxPeer$CheckboxDelegate;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.lwawt.LWCheckboxPeer this
         0: .line 60
            new sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            dup
            aload 0 /* this */
            invokespecial sun.lwawt.LWCheckboxPeer$CheckboxDelegate.<init>:(Lsun/lwawt/LWCheckboxPeer;)V
            areturn
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/lwawt/LWCheckboxPeer;

  java.awt.Component getDelegateFocusOwner();
    descriptor: ()Ljava/awt/Component;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.lwawt.LWCheckboxPeer this
         0: .line 65
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegate:()Ljavax/swing/JComponent;
            checkcast sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            invokevirtual sun.lwawt.LWCheckboxPeer$CheckboxDelegate.getCurrentButton:()Ljavax/swing/JToggleButton;
            areturn
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/lwawt/LWCheckboxPeer;

  void initializeImpl();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.lwawt.LWCheckboxPeer this
         0: .line 70
            aload 0 /* this */
            invokespecial sun.lwawt.LWComponentPeer.initializeImpl:()V
         1: .line 71
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getTarget:()Ljava/awt/Component;
            checkcast java.awt.Checkbox
            invokevirtual java.awt.Checkbox.getLabel:()Ljava/lang/String;
            invokevirtual sun.lwawt.LWCheckboxPeer.setLabel:(Ljava/lang/String;)V
         2: .line 72
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getTarget:()Ljava/awt/Component;
            checkcast java.awt.Checkbox
            invokevirtual java.awt.Checkbox.getState:()Z
            invokevirtual sun.lwawt.LWCheckboxPeer.setState:(Z)V
         3: .line 73
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getTarget:()Ljava/awt/Component;
            checkcast java.awt.Checkbox
            invokevirtual java.awt.Checkbox.getCheckboxGroup:()Ljava/awt/CheckboxGroup;
            invokevirtual sun.lwawt.LWCheckboxPeer.setCheckboxGroup:(Ljava/awt/CheckboxGroup;)V
         4: .line 74
            return
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/lwawt/LWCheckboxPeer;

  public void itemStateChanged(java.awt.event.ItemEvent);
    descriptor: (Ljava/awt/event/ItemEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.lwawt.LWCheckboxPeer this
        start local 1 // java.awt.event.ItemEvent e
         0: .line 81
            new sun.lwawt.LWCheckboxPeer$1
            dup
            aload 0 /* this */
            aload 1 /* e */
            invokespecial sun.lwawt.LWCheckboxPeer$1.<init>:(Lsun/lwawt/LWCheckboxPeer;Ljava/awt/event/ItemEvent;)V
            invokestatic javax.swing.SwingUtilities.invokeLater:(Ljava/lang/Runnable;)V
         1: .line 113
            return
        end local 1 // java.awt.event.ItemEvent e
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/lwawt/LWCheckboxPeer;
            0    2     1     e  Ljava/awt/event/ItemEvent;
    MethodParameters:
      Name  Flags
      e     final

  public void setCheckboxGroup(java.awt.CheckboxGroup);
    descriptor: (Ljava/awt/CheckboxGroup;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.lwawt.LWCheckboxPeer this
        start local 1 // java.awt.CheckboxGroup g
         0: .line 117
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegateLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 118
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegate:()Ljavax/swing/JComponent;
            checkcast sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            invokevirtual sun.lwawt.LWCheckboxPeer$CheckboxDelegate.getCurrentButton:()Ljavax/swing/JToggleButton;
            aload 0 /* this */
            invokevirtual javax.swing.JToggleButton.removeItemListener:(Ljava/awt/event/ItemListener;)V
         2: .line 119
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegate:()Ljavax/swing/JComponent;
            checkcast sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            aload 1 /* g */
            ifnull 3
            iconst_1
            goto 4
      StackMap locals: sun.lwawt.LWCheckboxPeer java.awt.CheckboxGroup java.lang.Object
      StackMap stack: sun.lwawt.LWCheckboxPeer$CheckboxDelegate
         3: iconst_0
      StackMap locals: sun.lwawt.LWCheckboxPeer java.awt.CheckboxGroup java.lang.Object
      StackMap stack: sun.lwawt.LWCheckboxPeer$CheckboxDelegate int
         4: invokevirtual sun.lwawt.LWCheckboxPeer$CheckboxDelegate.setRadioButton:(Z)V
         5: .line 120
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegate:()Ljavax/swing/JComponent;
            checkcast sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            invokevirtual sun.lwawt.LWCheckboxPeer$CheckboxDelegate.getCurrentButton:()Ljavax/swing/JToggleButton;
            aload 0 /* this */
            invokevirtual javax.swing.JToggleButton.addItemListener:(Ljava/awt/event/ItemListener;)V
         6: .line 117
            aload 2
            monitorexit
         7: goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: aload 2
            monitorexit
         9: athrow
        10: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.repaintPeer:()V
        11: .line 123
            return
        end local 1 // java.awt.CheckboxGroup g
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lsun/lwawt/LWCheckboxPeer;
            0   12     1     g  Ljava/awt/CheckboxGroup;
      Exception table:
        from    to  target  type
           1     7       8  any
           8     9       8  any
    MethodParameters:
      Name  Flags
      g     final

  public void setLabel(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.lwawt.LWCheckboxPeer this
        start local 1 // java.lang.String label
         0: .line 127
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegateLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 128
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegate:()Ljavax/swing/JComponent;
            checkcast sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            aload 1 /* label */
            invokevirtual sun.lwawt.LWCheckboxPeer$CheckboxDelegate.setText:(Ljava/lang/String;)V
         2: .line 127
            aload 2
            monitorexit
         3: goto 6
      StackMap locals: sun.lwawt.LWCheckboxPeer java.lang.String java.lang.Object
      StackMap stack: java.lang.Throwable
         4: aload 2
            monitorexit
         5: athrow
         6: .line 130
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String label
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lsun/lwawt/LWCheckboxPeer;
            0    7     1  label  Ljava/lang/String;
      Exception table:
        from    to  target  type
           1     3       4  any
           4     5       4  any
    MethodParameters:
       Name  Flags
      label  final

  public void setState(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.lwawt.LWCheckboxPeer this
        start local 1 // boolean state
         0: .line 134
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegateLock:()Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 135
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegate:()Ljavax/swing/JComponent;
            checkcast sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            invokevirtual sun.lwawt.LWCheckboxPeer$CheckboxDelegate.getCurrentButton:()Ljavax/swing/JToggleButton;
            aload 0 /* this */
            invokevirtual javax.swing.JToggleButton.removeItemListener:(Ljava/awt/event/ItemListener;)V
         2: .line 136
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegate:()Ljavax/swing/JComponent;
            checkcast sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            iload 1 /* state */
            invokevirtual sun.lwawt.LWCheckboxPeer$CheckboxDelegate.setSelected:(Z)V
         3: .line 137
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.getDelegate:()Ljavax/swing/JComponent;
            checkcast sun.lwawt.LWCheckboxPeer$CheckboxDelegate
            invokevirtual sun.lwawt.LWCheckboxPeer$CheckboxDelegate.getCurrentButton:()Ljavax/swing/JToggleButton;
            aload 0 /* this */
            invokevirtual javax.swing.JToggleButton.addItemListener:(Ljava/awt/event/ItemListener;)V
         4: .line 134
            aload 2
            monitorexit
         5: goto 8
      StackMap locals: sun.lwawt.LWCheckboxPeer int java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
         8: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.lwawt.LWCheckboxPeer.repaintPeer:()V
         9: .line 140
            return
        end local 1 // boolean state
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lsun/lwawt/LWCheckboxPeer;
            0   10     1  state  Z
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
    MethodParameters:
       Name  Flags
      state  final

  public boolean isFocusable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.lwawt.LWCheckboxPeer this
         0: .line 144
            iconst_1
            ireturn
        end local 0 // sun.lwawt.LWCheckboxPeer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/lwawt/LWCheckboxPeer;

  javax.swing.JComponent createDelegate();
    descriptor: ()Ljavax/swing/JComponent;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual sun.lwawt.LWCheckboxPeer.createDelegate:()Lsun/lwawt/LWCheckboxPeer$CheckboxDelegate;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lsun/lwawt/LWComponentPeer<Ljava/awt/Checkbox;Lsun/lwawt/LWCheckboxPeer$CheckboxDelegate;>;Ljava/awt/peer/CheckboxPeer;Ljava/awt/event/ItemListener;
SourceFile: "LWCheckboxPeer.java"
NestMembers:
  sun.lwawt.LWCheckboxPeer$1  sun.lwawt.LWCheckboxPeer$CheckboxDelegate  sun.lwawt.LWCheckboxPeer$CheckboxDelegate$1  sun.lwawt.LWCheckboxPeer$CheckboxDelegate$2
InnerClasses:
  sun.lwawt.LWCheckboxPeer$1
  final CheckboxDelegate = sun.lwawt.LWCheckboxPeer$CheckboxDelegate of sun.lwawt.LWCheckboxPeer