mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
20 lines
819 B
Java
Generated
20 lines
819 B
Java
Generated
// Generated automatically from javafx.beans.property.BooleanProperty for testing purposes
|
|
|
|
package javafx.beans.property;
|
|
|
|
import javafx.beans.property.ObjectProperty;
|
|
import javafx.beans.property.Property;
|
|
import javafx.beans.property.ReadOnlyBooleanProperty;
|
|
import javafx.beans.value.WritableBooleanValue;
|
|
|
|
abstract public class BooleanProperty extends ReadOnlyBooleanProperty implements Property<Boolean>, WritableBooleanValue
|
|
{
|
|
public BooleanProperty(){}
|
|
public ObjectProperty<Boolean> asObject(){ return null; }
|
|
public String toString(){ return null; }
|
|
public static BooleanProperty booleanProperty(Property<Boolean> p0){ return null; }
|
|
public void bindBidirectional(Property<Boolean> p0){}
|
|
public void setValue(Boolean p0){}
|
|
public void unbindBidirectional(Property<Boolean> p0){}
|
|
}
|