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

20 lines
815 B
Java
Generated

// Generated automatically from javafx.beans.property.IntegerProperty for testing purposes
package javafx.beans.property;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.Property;
import javafx.beans.property.ReadOnlyIntegerProperty;
import javafx.beans.value.WritableIntegerValue;
abstract public class IntegerProperty extends ReadOnlyIntegerProperty implements Property<Number>, WritableIntegerValue
{
public IntegerProperty(){}
public ObjectProperty<Integer> asObject(){ return null; }
public String toString(){ return null; }
public static IntegerProperty integerProperty(Property<Integer> p0){ return null; }
public void bindBidirectional(Property<Number> p0){}
public void setValue(Number p0){}
public void unbindBidirectional(Property<Number> p0){}
}