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

16 lines
693 B
Java
Generated

// Generated automatically from javafx.beans.property.ReadOnlyIntegerProperty for testing purposes
package javafx.beans.property;
import javafx.beans.binding.IntegerExpression;
import javafx.beans.property.ReadOnlyObjectProperty;
import javafx.beans.property.ReadOnlyProperty;
abstract public class ReadOnlyIntegerProperty extends IntegerExpression implements ReadOnlyProperty<Number>
{
public ReadOnlyIntegerProperty(){}
public ReadOnlyObjectProperty<Integer> asObject(){ return null; }
public String toString(){ return null; }
public static <T extends Number> ReadOnlyIntegerProperty readOnlyIntegerProperty(javafx.beans.property.ReadOnlyProperty<T> p0){ return null; }
}