// 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 extends javafx.beans.property.ReadOnlyProperty, javafx.beans.value.WritableValue { boolean isBound(); void bind(javafx.beans.value.ObservableValue p0); void bindBidirectional(Property p0); void unbind(); void unbindBidirectional(Property p0); }