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

17 lines
668 B
Java
Generated

// Generated automatically from javafx.beans.property.ObjectProperty for testing purposes
package javafx.beans.property;
import javafx.beans.property.Property;
import javafx.beans.property.ReadOnlyObjectProperty;
import javafx.beans.value.WritableObjectValue;
abstract public class ObjectProperty<T> extends ReadOnlyObjectProperty<T> implements WritableObjectValue<T>, javafx.beans.property.Property<T>
{
public ObjectProperty(){}
public String toString(){ return null; }
public void bindBidirectional(javafx.beans.property.Property<T> p0){}
public void setValue(T p0){}
public void unbindBidirectional(javafx.beans.property.Property<T> p0){}
}