public abstract class com.sun.javafx.binding.BidirectionalBinding<T> implements javafx.beans.value.ChangeListener<T>, javafx.beans.WeakListener
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: com.sun.javafx.binding.BidirectionalBinding
super_class: java.lang.Object
{
private final int cachedHashCode;
descriptor: I
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private static void checkParameters(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
ifnull 1
aload 1
ifnonnull 2
1: StackMap locals:
StackMap stack:
new java.lang.NullPointerException
dup
ldc "Both properties must be specified."
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
aload 1
if_acmpne 4
3: new java.lang.IllegalArgumentException
dup
ldc "Cannot bind property to itself"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
4: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 property1 Ljava/lang/Object;
0 5 1 property2 Ljava/lang/Object;
MethodParameters:
Name Flags
property1
property2
public static <T> com.sun.javafx.binding.BidirectionalBinding bind(javafx.beans.property.Property<T>, javafx.beans.property.Property<T>);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.checkParameters:(Ljava/lang/Object;Ljava/lang/Object;)V
1: aload 0
instanceof javafx.beans.property.DoubleProperty
ifeq 3
aload 1
instanceof javafx.beans.property.DoubleProperty
ifeq 3
2: new com.sun.javafx.binding.BidirectionalBinding$BidirectionalDoubleBinding
dup
aload 0
checkcast javafx.beans.property.DoubleProperty
aload 1
checkcast javafx.beans.property.DoubleProperty
invokespecial com.sun.javafx.binding.BidirectionalBinding$BidirectionalDoubleBinding.<init>:(Ljavafx/beans/property/DoubleProperty;Ljavafx/beans/property/DoubleProperty;)V
goto 12
3: StackMap locals:
StackMap stack:
aload 0
instanceof javafx.beans.property.FloatProperty
ifeq 5
aload 1
instanceof javafx.beans.property.FloatProperty
ifeq 5
4: new com.sun.javafx.binding.BidirectionalBinding$BidirectionalFloatBinding
dup
aload 0
checkcast javafx.beans.property.FloatProperty
aload 1
checkcast javafx.beans.property.FloatProperty
invokespecial com.sun.javafx.binding.BidirectionalBinding$BidirectionalFloatBinding.<init>:(Ljavafx/beans/property/FloatProperty;Ljavafx/beans/property/FloatProperty;)V
goto 12
5: StackMap locals:
StackMap stack:
aload 0
instanceof javafx.beans.property.IntegerProperty
ifeq 7
aload 1
instanceof javafx.beans.property.IntegerProperty
ifeq 7
6: new com.sun.javafx.binding.BidirectionalBinding$BidirectionalIntegerBinding
dup
aload 0
checkcast javafx.beans.property.IntegerProperty
aload 1
checkcast javafx.beans.property.IntegerProperty
invokespecial com.sun.javafx.binding.BidirectionalBinding$BidirectionalIntegerBinding.<init>:(Ljavafx/beans/property/IntegerProperty;Ljavafx/beans/property/IntegerProperty;)V
goto 12
7: StackMap locals:
StackMap stack:
aload 0
instanceof javafx.beans.property.LongProperty
ifeq 9
aload 1
instanceof javafx.beans.property.LongProperty
ifeq 9
8: new com.sun.javafx.binding.BidirectionalBinding$BidirectionalLongBinding
dup
aload 0
checkcast javafx.beans.property.LongProperty
aload 1
checkcast javafx.beans.property.LongProperty
invokespecial com.sun.javafx.binding.BidirectionalBinding$BidirectionalLongBinding.<init>:(Ljavafx/beans/property/LongProperty;Ljavafx/beans/property/LongProperty;)V
goto 12
9: StackMap locals:
StackMap stack:
aload 0
instanceof javafx.beans.property.BooleanProperty
ifeq 11
aload 1
instanceof javafx.beans.property.BooleanProperty
ifeq 11
10: new com.sun.javafx.binding.BidirectionalBinding$BidirectionalBooleanBinding
dup
aload 0
checkcast javafx.beans.property.BooleanProperty
aload 1
checkcast javafx.beans.property.BooleanProperty
invokespecial com.sun.javafx.binding.BidirectionalBinding$BidirectionalBooleanBinding.<init>:(Ljavafx/beans/property/BooleanProperty;Ljavafx/beans/property/BooleanProperty;)V
goto 12
11: StackMap locals:
StackMap stack:
new com.sun.javafx.binding.BidirectionalBinding$TypedGenericBidirectionalBinding
dup
aload 0
aload 1
invokespecial com.sun.javafx.binding.BidirectionalBinding$TypedGenericBidirectionalBinding.<init>:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)V
12: StackMap locals:
StackMap stack: com.sun.javafx.binding.BidirectionalBinding
astore 2
start local 2 13: aload 0
aload 1
invokeinterface javafx.beans.property.Property.getValue:()Ljava/lang/Object;
invokeinterface javafx.beans.property.Property.setValue:(Ljava/lang/Object;)V
14: aload 0
aload 2
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
15: aload 1
aload 2
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
16: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 property1 Ljavafx/beans/property/Property<TT;>;
0 17 1 property2 Ljavafx/beans/property/Property<TT;>;
13 17 2 binding Lcom/sun/javafx/binding/BidirectionalBinding;
Signature: <T:Ljava/lang/Object;>(Ljavafx/beans/property/Property<TT;>;Ljavafx/beans/property/Property<TT;>;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static bind(javafx.beans.property.Property<java.lang.String>, javafx.beans.property.Property<?>, java.text.Format);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;Ljava/text/Format;)Ljava/lang/Object;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=5, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.checkParameters:(Ljava/lang/Object;Ljava/lang/Object;)V
1: aload 2
ifnonnull 3
2: new java.lang.NullPointerException
dup
ldc "Format cannot be null"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
3: StackMap locals:
StackMap stack:
new com.sun.javafx.binding.BidirectionalBinding$StringFormatBidirectionalBinding
dup
aload 0
aload 1
aload 2
invokespecial com.sun.javafx.binding.BidirectionalBinding$StringFormatBidirectionalBinding.<init>:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;Ljava/text/Format;)V
astore 3
start local 3 4: aload 0
aload 2
aload 1
invokeinterface javafx.beans.property.Property.getValue:()Ljava/lang/Object;
invokevirtual java.text.Format.format:(Ljava/lang/Object;)Ljava/lang/String;
invokeinterface javafx.beans.property.Property.setValue:(Ljava/lang/Object;)V
5: aload 0
aload 3
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
6: aload 1
aload 3
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
7: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 stringProperty Ljavafx/beans/property/Property<Ljava/lang/String;>;
0 8 1 otherProperty Ljavafx/beans/property/Property<*>;
0 8 2 format Ljava/text/Format;
4 8 3 binding Lcom/sun/javafx/binding/BidirectionalBinding$StringConversionBidirectionalBinding<*>;
Signature: (Ljavafx/beans/property/Property<Ljava/lang/String;>;Ljavafx/beans/property/Property<*>;Ljava/text/Format;)Ljava/lang/Object;
MethodParameters:
Name Flags
stringProperty
otherProperty
format
public static <T> bind(javafx.beans.property.Property<java.lang.String>, javafx.beans.property.Property<T>, javafx.util.StringConverter<T>);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;Ljavafx/util/StringConverter;)Ljava/lang/Object;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=5, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.checkParameters:(Ljava/lang/Object;Ljava/lang/Object;)V
1: aload 2
ifnonnull 3
2: new java.lang.NullPointerException
dup
ldc "Converter cannot be null"
invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
athrow
3: StackMap locals:
StackMap stack:
new com.sun.javafx.binding.BidirectionalBinding$StringConverterBidirectionalBinding
dup
aload 0
aload 1
aload 2
invokespecial com.sun.javafx.binding.BidirectionalBinding$StringConverterBidirectionalBinding.<init>:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;Ljavafx/util/StringConverter;)V
astore 3
start local 3 4: aload 0
aload 2
aload 1
invokeinterface javafx.beans.property.Property.getValue:()Ljava/lang/Object;
invokevirtual javafx.util.StringConverter.toString:(Ljava/lang/Object;)Ljava/lang/String;
invokeinterface javafx.beans.property.Property.setValue:(Ljava/lang/Object;)V
5: aload 0
aload 3
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
6: aload 1
aload 3
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
7: aload 3
areturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 stringProperty Ljavafx/beans/property/Property<Ljava/lang/String;>;
0 8 1 otherProperty Ljavafx/beans/property/Property<TT;>;
0 8 2 converter Ljavafx/util/StringConverter<TT;>;
4 8 3 binding Lcom/sun/javafx/binding/BidirectionalBinding$StringConversionBidirectionalBinding<TT;>;
Signature: <T:Ljava/lang/Object;>(Ljavafx/beans/property/Property<Ljava/lang/String;>;Ljavafx/beans/property/Property<TT;>;Ljavafx/util/StringConverter<TT;>;)Ljava/lang/Object;
MethodParameters:
Name Flags
stringProperty
otherProperty
converter
public static <T> void unbind(javafx.beans.property.Property<T>, javafx.beans.property.Property<T>);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)V
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.checkParameters:(Ljava/lang/Object;Ljava/lang/Object;)V
1: new com.sun.javafx.binding.BidirectionalBinding$UntypedGenericBidirectionalBinding
dup
aload 0
aload 1
invokespecial com.sun.javafx.binding.BidirectionalBinding$UntypedGenericBidirectionalBinding.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
astore 2
start local 2 2: aload 0
aload 2
invokeinterface javafx.beans.property.Property.removeListener:(Ljavafx/beans/value/ChangeListener;)V
3: aload 1
aload 2
invokeinterface javafx.beans.property.Property.removeListener:(Ljavafx/beans/value/ChangeListener;)V
4: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 property1 Ljavafx/beans/property/Property<TT;>;
0 5 1 property2 Ljavafx/beans/property/Property<TT;>;
2 5 2 binding Lcom/sun/javafx/binding/BidirectionalBinding;
Signature: <T:Ljava/lang/Object;>(Ljavafx/beans/property/Property<TT;>;Ljavafx/beans/property/Property<TT;>;)V
MethodParameters:
Name Flags
property1
property2
public static void unbind(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.checkParameters:(Ljava/lang/Object;Ljava/lang/Object;)V
1: new com.sun.javafx.binding.BidirectionalBinding$UntypedGenericBidirectionalBinding
dup
aload 0
aload 1
invokespecial com.sun.javafx.binding.BidirectionalBinding$UntypedGenericBidirectionalBinding.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
astore 2
start local 2 2: aload 0
instanceof javafx.beans.value.ObservableValue
ifeq 4
3: aload 0
checkcast javafx.beans.value.ObservableValue
aload 2
invokeinterface javafx.beans.value.ObservableValue.removeListener:(Ljavafx/beans/value/ChangeListener;)V
4: StackMap locals: com.sun.javafx.binding.BidirectionalBinding
StackMap stack:
aload 1
instanceof javafx.beans.value.ObservableValue
ifeq 6
5: aload 1
checkcast javafx.beans.value.ObservableValue
aload 2
invokeinterface javafx.beans.value.ObservableValue.removeListener:(Ljavafx/beans/value/ChangeListener;)V
6: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 property1 Ljava/lang/Object;
0 7 1 property2 Ljava/lang/Object;
2 7 2 binding Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.Property<java.lang.Integer>, javafx.beans.property.IntegerProperty);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/IntegerProperty;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.bindNumber:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 property1 Ljavafx/beans/property/Property<Ljava/lang/Integer;>;
0 1 1 property2 Ljavafx/beans/property/IntegerProperty;
Signature: (Ljavafx/beans/property/Property<Ljava/lang/Integer;>;Ljavafx/beans/property/IntegerProperty;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.Property<java.lang.Long>, javafx.beans.property.LongProperty);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/LongProperty;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.bindNumber:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 property1 Ljavafx/beans/property/Property<Ljava/lang/Long;>;
0 1 1 property2 Ljavafx/beans/property/LongProperty;
Signature: (Ljavafx/beans/property/Property<Ljava/lang/Long;>;Ljavafx/beans/property/LongProperty;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.Property<java.lang.Float>, javafx.beans.property.FloatProperty);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/FloatProperty;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.bindNumber:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 property1 Ljavafx/beans/property/Property<Ljava/lang/Float;>;
0 1 1 property2 Ljavafx/beans/property/FloatProperty;
Signature: (Ljavafx/beans/property/Property<Ljava/lang/Float;>;Ljavafx/beans/property/FloatProperty;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.Property<java.lang.Double>, javafx.beans.property.DoubleProperty);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/DoubleProperty;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.bindNumber:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 property1 Ljavafx/beans/property/Property<Ljava/lang/Double;>;
0 1 1 property2 Ljavafx/beans/property/DoubleProperty;
Signature: (Ljavafx/beans/property/Property<Ljava/lang/Double;>;Ljavafx/beans/property/DoubleProperty;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.IntegerProperty, javafx.beans.property.Property<java.lang.Integer>);
descriptor: (Ljavafx/beans/property/IntegerProperty;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.bindNumberObject:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 property1 Ljavafx/beans/property/IntegerProperty;
0 1 1 property2 Ljavafx/beans/property/Property<Ljava/lang/Integer;>;
Signature: (Ljavafx/beans/property/IntegerProperty;Ljavafx/beans/property/Property<Ljava/lang/Integer;>;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.LongProperty, javafx.beans.property.Property<java.lang.Long>);
descriptor: (Ljavafx/beans/property/LongProperty;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.bindNumberObject:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 property1 Ljavafx/beans/property/LongProperty;
0 1 1 property2 Ljavafx/beans/property/Property<Ljava/lang/Long;>;
Signature: (Ljavafx/beans/property/LongProperty;Ljavafx/beans/property/Property<Ljava/lang/Long;>;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.FloatProperty, javafx.beans.property.Property<java.lang.Float>);
descriptor: (Ljavafx/beans/property/FloatProperty;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.bindNumberObject:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 property1 Ljavafx/beans/property/FloatProperty;
0 1 1 property2 Ljavafx/beans/property/Property<Ljava/lang/Float;>;
Signature: (Ljavafx/beans/property/FloatProperty;Ljavafx/beans/property/Property<Ljava/lang/Float;>;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.DoubleProperty, javafx.beans.property.Property<java.lang.Double>);
descriptor: (Ljavafx/beans/property/DoubleProperty;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.bindNumberObject:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 property1 Ljavafx/beans/property/DoubleProperty;
0 1 1 property2 Ljavafx/beans/property/Property<Ljava/lang/Double;>;
Signature: (Ljavafx/beans/property/DoubleProperty;Ljavafx/beans/property/Property<Ljava/lang/Double;>;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
private static <T extends java.lang.Number> com.sun.javafx.binding.BidirectionalBinding bindNumberObject(javafx.beans.property.Property<java.lang.Number>, javafx.beans.property.Property<T>);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.checkParameters:(Ljava/lang/Object;Ljava/lang/Object;)V
1: new com.sun.javafx.binding.BidirectionalBinding$TypedNumberBidirectionalBinding
dup
aload 1
aload 0
invokespecial com.sun.javafx.binding.BidirectionalBinding$TypedNumberBidirectionalBinding.<init>:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)V
astore 2
start local 2 2: aload 0
aload 1
invokeinterface javafx.beans.property.Property.getValue:()Ljava/lang/Object;
checkcast java.lang.Number
invokeinterface javafx.beans.property.Property.setValue:(Ljava/lang/Object;)V
3: aload 0
aload 2
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
4: aload 1
aload 2
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
5: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 property1 Ljavafx/beans/property/Property<Ljava/lang/Number;>;
0 6 1 property2 Ljavafx/beans/property/Property<TT;>;
2 6 2 binding Lcom/sun/javafx/binding/BidirectionalBinding<Ljava/lang/Number;>;
Signature: <T:Ljava/lang/Number;>(Ljavafx/beans/property/Property<Ljava/lang/Number;>;Ljavafx/beans/property/Property<TT;>;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
private static <T extends java.lang.Number> com.sun.javafx.binding.BidirectionalBinding bindNumber(javafx.beans.property.Property<T>, javafx.beans.property.Property<java.lang.Number>);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)Lcom/sun/javafx/binding/BidirectionalBinding;
flags: (0x000a) ACC_PRIVATE, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.checkParameters:(Ljava/lang/Object;Ljava/lang/Object;)V
1: new com.sun.javafx.binding.BidirectionalBinding$TypedNumberBidirectionalBinding
dup
aload 0
aload 1
invokespecial com.sun.javafx.binding.BidirectionalBinding$TypedNumberBidirectionalBinding.<init>:(Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)V
astore 2
start local 2 2: aload 0
aload 1
invokeinterface javafx.beans.property.Property.getValue:()Ljava/lang/Object;
checkcast java.lang.Number
invokeinterface javafx.beans.property.Property.setValue:(Ljava/lang/Object;)V
3: aload 0
aload 2
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
4: aload 1
aload 2
invokeinterface javafx.beans.property.Property.addListener:(Ljavafx/beans/value/ChangeListener;)V
5: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 property1 Ljavafx/beans/property/Property<TT;>;
0 6 1 property2 Ljavafx/beans/property/Property<Ljava/lang/Number;>;
2 6 2 binding Lcom/sun/javafx/binding/BidirectionalBinding<Ljava/lang/Number;>;
Signature: <T:Ljava/lang/Number;>(Ljavafx/beans/property/Property<TT;>;Ljavafx/beans/property/Property<Ljava/lang/Number;>;)Lcom/sun/javafx/binding/BidirectionalBinding;
MethodParameters:
Name Flags
property1
property2
public static <T extends java.lang.Number> void unbindNumber(javafx.beans.property.Property<T>, javafx.beans.property.Property<java.lang.Number>);
descriptor: (Ljavafx/beans/property/Property;Ljavafx/beans/property/Property;)V
flags: (0x0009) ACC_PUBLIC, ACC_STATIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokestatic com.sun.javafx.binding.BidirectionalBinding.checkParameters:(Ljava/lang/Object;Ljava/lang/Object;)V
1: new com.sun.javafx.binding.BidirectionalBinding$UntypedGenericBidirectionalBinding
dup
aload 0
aload 1
invokespecial com.sun.javafx.binding.BidirectionalBinding$UntypedGenericBidirectionalBinding.<init>:(Ljava/lang/Object;Ljava/lang/Object;)V
astore 2
start local 2 2: aload 0
instanceof javafx.beans.value.ObservableValue
ifeq 4
3: aload 0
aload 2
invokeinterface javafx.beans.value.ObservableValue.removeListener:(Ljavafx/beans/value/ChangeListener;)V
4: StackMap locals: com.sun.javafx.binding.BidirectionalBinding
StackMap stack:
aload 1
instanceof javafx.beans.Observable
ifeq 6
5: aload 1
aload 2
invokeinterface javafx.beans.value.ObservableValue.removeListener:(Ljavafx/beans/value/ChangeListener;)V
6: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 property1 Ljavafx/beans/property/Property<TT;>;
0 7 1 property2 Ljavafx/beans/property/Property<Ljava/lang/Number;>;
2 7 2 binding Lcom/sun/javafx/binding/BidirectionalBinding;
Signature: <T:Ljava/lang/Number;>(Ljavafx/beans/property/Property<TT;>;Ljavafx/beans/property/Property<Ljava/lang/Number;>;)V
MethodParameters:
Name Flags
property1
property2
private void <init>(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
aload 1
invokevirtual java.lang.Object.hashCode:()I
aload 2
invokevirtual java.lang.Object.hashCode:()I
imul
putfield com.sun.javafx.binding.BidirectionalBinding.cachedHashCode:I
2: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lcom/sun/javafx/binding/BidirectionalBinding<TT;>;
0 3 1 property1 Ljava/lang/Object;
0 3 2 property2 Ljava/lang/Object;
MethodParameters:
Name Flags
property1
property2
protected abstract java.lang.Object getProperty1();
descriptor: ()Ljava/lang/Object;
flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
protected abstract java.lang.Object getProperty2();
descriptor: ()Ljava/lang/Object;
flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
public int hashCode();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield com.sun.javafx.binding.BidirectionalBinding.cachedHashCode:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/sun/javafx/binding/BidirectionalBinding<TT;>;
public boolean wasGarbageCollected();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual com.sun.javafx.binding.BidirectionalBinding.getProperty1:()Ljava/lang/Object;
ifnull 1
aload 0
invokevirtual com.sun.javafx.binding.BidirectionalBinding.getProperty2:()Ljava/lang/Object;
ifnull 1
iconst_0
ireturn
StackMap locals:
StackMap stack:
1: iconst_1
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lcom/sun/javafx/binding/BidirectionalBinding<TT;>;
public boolean equals(java.lang.Object);
descriptor: (Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=7, args_size=2
start local 0 start local 1 0: aload 0
aload 1
if_acmpne 2
1: iconst_1
ireturn
2: StackMap locals:
StackMap stack:
aload 0
invokevirtual com.sun.javafx.binding.BidirectionalBinding.getProperty1:()Ljava/lang/Object;
astore 2
start local 2 3: aload 0
invokevirtual com.sun.javafx.binding.BidirectionalBinding.getProperty2:()Ljava/lang/Object;
astore 3
start local 3 4: aload 2
ifnull 5
aload 3
ifnonnull 6
5: StackMap locals: java.lang.Object java.lang.Object
StackMap stack:
iconst_0
ireturn
6: StackMap locals:
StackMap stack:
aload 1
instanceof com.sun.javafx.binding.BidirectionalBinding
ifeq 16
7: aload 1
checkcast com.sun.javafx.binding.BidirectionalBinding
astore 4
start local 4 8: aload 4
invokevirtual com.sun.javafx.binding.BidirectionalBinding.getProperty1:()Ljava/lang/Object;
astore 5
start local 5 9: aload 4
invokevirtual com.sun.javafx.binding.BidirectionalBinding.getProperty2:()Ljava/lang/Object;
astore 6
start local 6 10: aload 5
ifnull 11
aload 6
ifnonnull 12
11: StackMap locals: com.sun.javafx.binding.BidirectionalBinding java.lang.Object java.lang.Object
StackMap stack:
iconst_0
ireturn
12: StackMap locals:
StackMap stack:
aload 2
aload 5
if_acmpne 14
aload 3
aload 6
if_acmpne 14
13: iconst_1
ireturn
14: StackMap locals:
StackMap stack:
aload 2
aload 6
if_acmpne 16
aload 3
aload 5
if_acmpne 16
15: iconst_1
ireturn
end local 6 end local 5 end local 4 16: StackMap locals:
StackMap stack:
iconst_0
ireturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 this Lcom/sun/javafx/binding/BidirectionalBinding<TT;>;
0 17 1 obj Ljava/lang/Object;
3 17 2 propertyA1 Ljava/lang/Object;
4 17 3 propertyA2 Ljava/lang/Object;
8 16 4 otherBinding Lcom/sun/javafx/binding/BidirectionalBinding;
9 16 5 propertyB1 Ljava/lang/Object;
10 16 6 propertyB2 Ljava/lang/Object;
MethodParameters:
Name Flags
obj
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Ljavafx/beans/value/ChangeListener<TT;>;Ljavafx/beans/WeakListener;
SourceFile: "BidirectionalBinding.java"
NestMembers:
com.sun.javafx.binding.BidirectionalBinding$BidirectionalBooleanBinding com.sun.javafx.binding.BidirectionalBinding$BidirectionalDoubleBinding com.sun.javafx.binding.BidirectionalBinding$BidirectionalFloatBinding com.sun.javafx.binding.BidirectionalBinding$BidirectionalIntegerBinding com.sun.javafx.binding.BidirectionalBinding$BidirectionalLongBinding com.sun.javafx.binding.BidirectionalBinding$StringConversionBidirectionalBinding com.sun.javafx.binding.BidirectionalBinding$StringConverterBidirectionalBinding com.sun.javafx.binding.BidirectionalBinding$StringFormatBidirectionalBinding com.sun.javafx.binding.BidirectionalBinding$TypedGenericBidirectionalBinding com.sun.javafx.binding.BidirectionalBinding$TypedNumberBidirectionalBinding com.sun.javafx.binding.BidirectionalBinding$UntypedGenericBidirectionalBinding
InnerClasses:
private BidirectionalBooleanBinding = com.sun.javafx.binding.BidirectionalBinding$BidirectionalBooleanBinding of com.sun.javafx.binding.BidirectionalBinding
private BidirectionalDoubleBinding = com.sun.javafx.binding.BidirectionalBinding$BidirectionalDoubleBinding of com.sun.javafx.binding.BidirectionalBinding
private BidirectionalFloatBinding = com.sun.javafx.binding.BidirectionalBinding$BidirectionalFloatBinding of com.sun.javafx.binding.BidirectionalBinding
private BidirectionalIntegerBinding = com.sun.javafx.binding.BidirectionalBinding$BidirectionalIntegerBinding of com.sun.javafx.binding.BidirectionalBinding
private BidirectionalLongBinding = com.sun.javafx.binding.BidirectionalBinding$BidirectionalLongBinding of com.sun.javafx.binding.BidirectionalBinding
public abstract StringConversionBidirectionalBinding = com.sun.javafx.binding.BidirectionalBinding$StringConversionBidirectionalBinding of com.sun.javafx.binding.BidirectionalBinding
private StringConverterBidirectionalBinding = com.sun.javafx.binding.BidirectionalBinding$StringConverterBidirectionalBinding of com.sun.javafx.binding.BidirectionalBinding
private StringFormatBidirectionalBinding = com.sun.javafx.binding.BidirectionalBinding$StringFormatBidirectionalBinding of com.sun.javafx.binding.BidirectionalBinding
private TypedGenericBidirectionalBinding = com.sun.javafx.binding.BidirectionalBinding$TypedGenericBidirectionalBinding of com.sun.javafx.binding.BidirectionalBinding
private TypedNumberBidirectionalBinding = com.sun.javafx.binding.BidirectionalBinding$TypedNumberBidirectionalBinding of com.sun.javafx.binding.BidirectionalBinding
private UntypedGenericBidirectionalBinding = com.sun.javafx.binding.BidirectionalBinding$UntypedGenericBidirectionalBinding of com.sun.javafx.binding.BidirectionalBinding