Files
codeql/java/ql/test/stubs/javafx-web/javafx/beans/property/Property.java
Tony Torralba 393a0759db More stubs
2023-03-10 12:35:13 +01:00

17 lines
568 B
Java
Generated

// Generated automatically from javafx.beans.property.Property for testing purposes
package javafx.beans.property;
import javafx.beans.property.ReadOnlyProperty;
import javafx.beans.value.ObservableValue;
import javafx.beans.value.WritableValue;
public interface Property<T> extends javafx.beans.property.ReadOnlyProperty<T>, javafx.beans.value.WritableValue<T>
{
boolean isBound();
void bind(javafx.beans.value.ObservableValue<? extends T> p0);
void bindBidirectional(Property<T> p0);
void unbind();
void unbindBidirectional(Property<T> p0);
}