final class javafx.scene.Node$FocusedProperty extends javafx.beans.property.ReadOnlyBooleanPropertyBase
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: javafx.scene.Node$FocusedProperty
  super_class: javafx.beans.property.ReadOnlyBooleanPropertyBase
{
  private boolean value;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

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

  final javafx.scene.Node this$0;
    descriptor: Ljavafx/scene/Node;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(javafx.scene.Node);
    descriptor: (Ljavafx/scene/Node;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.scene.Node$FocusedProperty this
         0: .line 8145
            aload 0 /* this */
            aload 1
            putfield javafx.scene.Node$FocusedProperty.this$0:Ljavafx/scene/Node;
            aload 0 /* this */
            invokespecial javafx.beans.property.ReadOnlyBooleanPropertyBase.<init>:()V
         1: .line 8147
            aload 0 /* this */
            iconst_1
            putfield javafx.scene.Node$FocusedProperty.valid:Z
         2: .line 8148
            aload 0 /* this */
            iconst_0
            putfield javafx.scene.Node$FocusedProperty.needsChangeEvent:Z
         3: .line 8145
            return
        end local 0 // javafx.scene.Node$FocusedProperty this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavafx/scene/Node$FocusedProperty;
    MethodParameters:
        Name  Flags
      this$0  final

  public void store(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.scene.Node$FocusedProperty this
        start local 1 // boolean value
         0: .line 8151
            iload 1 /* value */
            aload 0 /* this */
            getfield javafx.scene.Node$FocusedProperty.value:Z
            if_icmpeq 3
         1: .line 8152
            aload 0 /* this */
            iload 1 /* value */
            putfield javafx.scene.Node$FocusedProperty.value:Z
         2: .line 8153
            aload 0 /* this */
            invokevirtual javafx.scene.Node$FocusedProperty.markInvalid:()V
         3: .line 8155
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean value
        end local 0 // javafx.scene.Node$FocusedProperty this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljavafx/scene/Node$FocusedProperty;
            0    4     1  value  Z
    MethodParameters:
       Name  Flags
      value  final

  public void notifyListeners();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.scene.Node$FocusedProperty this
         0: .line 8158
            aload 0 /* this */
            getfield javafx.scene.Node$FocusedProperty.needsChangeEvent:Z
            ifeq 3
         1: .line 8159
            aload 0 /* this */
            invokevirtual javafx.scene.Node$FocusedProperty.fireValueChangedEvent:()V
         2: .line 8160
            aload 0 /* this */
            iconst_0
            putfield javafx.scene.Node$FocusedProperty.needsChangeEvent:Z
         3: .line 8162
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javafx.scene.Node$FocusedProperty this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavafx/scene/Node$FocusedProperty;

  private void markInvalid();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // javafx.scene.Node$FocusedProperty this
         0: .line 8165
            aload 0 /* this */
            getfield javafx.scene.Node$FocusedProperty.valid:Z
            ifeq 8
         1: .line 8166
            aload 0 /* this */
            iconst_0
            putfield javafx.scene.Node$FocusedProperty.valid:Z
         2: .line 8168
            aload 0 /* this */
            getfield javafx.scene.Node$FocusedProperty.this$0:Ljavafx/scene/Node;
            getstatic javafx.scene.Node.FOCUSED_PSEUDOCLASS_STATE:Ljavafx/css/PseudoClass;
            aload 0 /* this */
            invokevirtual javafx.scene.Node$FocusedProperty.get:()Z
            invokevirtual javafx.scene.Node.pseudoClassStateChanged:(Ljavafx/css/PseudoClass;Z)V
         3: .line 8169
            invokestatic com.sun.javafx.util.Logging.getFocusLogger:()Lcom/sun/javafx/logging/PlatformLogger;
            astore 1 /* logger */
        start local 1 // com.sun.javafx.logging.PlatformLogger logger
         4: .line 8170
            aload 1 /* logger */
            getstatic com.sun.javafx.logging.PlatformLogger$Level.FINE:Lcom/sun/javafx/logging/PlatformLogger$Level;
            invokevirtual com.sun.javafx.logging.PlatformLogger.isLoggable:(Lcom/sun/javafx/logging/PlatformLogger$Level;)Z
            ifeq 6
         5: .line 8171
            aload 1 /* logger */
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 0 /* this */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " focused="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual javafx.scene.Node$FocusedProperty.get:()Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual com.sun.javafx.logging.PlatformLogger.fine:(Ljava/lang/String;)V
         6: .line 8174
      StackMap locals: com.sun.javafx.logging.PlatformLogger
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield javafx.scene.Node$FocusedProperty.needsChangeEvent:Z
         7: .line 8176
            aload 0 /* this */
            getfield javafx.scene.Node$FocusedProperty.this$0:Ljavafx/scene/Node;
            getstatic javafx.scene.AccessibleAttribute.FOCUSED:Ljavafx/scene/AccessibleAttribute;
            invokevirtual javafx.scene.Node.notifyAccessibleAttributeChanged:(Ljavafx/scene/AccessibleAttribute;)V
        end local 1 // com.sun.javafx.logging.PlatformLogger logger
         8: .line 8178
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javafx.scene.Node$FocusedProperty this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Ljavafx/scene/Node$FocusedProperty;
            4    8     1  logger  Lcom/sun/javafx/logging/PlatformLogger;

  public boolean get();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javafx.scene.Node$FocusedProperty this
         0: .line 8182
            aload 0 /* this */
            iconst_1
            putfield javafx.scene.Node$FocusedProperty.valid:Z
         1: .line 8183
            aload 0 /* this */
            getfield javafx.scene.Node$FocusedProperty.value:Z
            ireturn
        end local 0 // javafx.scene.Node$FocusedProperty this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavafx/scene/Node$FocusedProperty;

  public java.lang.Object getBean();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.Node$FocusedProperty this
         0: .line 8188
            aload 0 /* this */
            getfield javafx.scene.Node$FocusedProperty.this$0:Ljavafx/scene/Node;
            areturn
        end local 0 // javafx.scene.Node$FocusedProperty this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/Node$FocusedProperty;

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.Node$FocusedProperty this
         0: .line 8193
            ldc "focused"
            areturn
        end local 0 // javafx.scene.Node$FocusedProperty this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/Node$FocusedProperty;
}
SourceFile: "Node.java"
NestHost: javafx.scene.Node
InnerClasses:
  public final Level = com.sun.javafx.logging.PlatformLogger$Level of com.sun.javafx.logging.PlatformLogger
  final FocusedProperty = javafx.scene.Node$FocusedProperty of javafx.scene.Node