The package javafx.beans.property
defines read-only
properties and writable properties, plus a number of implementations.
Read-only properties have two getters, get()
returns the
primitive value, getValue()
returns the boxed value.
It is possible to observe read-only properties for changes. They
define methods to add and remove InvalidationListeners
and ChangeListeners
.
To get the context of a read-only property, two methods getBean()
and getName()
are defined. They return the
containing bean and the name of a property.
In addition to the functionality defined for read-only properties, writable properties contain the following methods.
A writable property defines two setters in addition to the
getters defined for read-only properties. The setter set()
takes a primitive value, the second setter setValue()
takes
the boxed value.
All properties can be bound to ObservableValues
of the same type,
which means that the property will always contain the same value as
the bound ObservableValue
. It is also possible to define a
bidirectional binding between two properties, so that both properties
always contain the same value. If one of the properties changes, the
other one will be updated.
Modifier and Type | Interface and Description |
---|---|
public interface | Property<
the type of the wrapped value T>Generic interface that defines the methods common to all (writable) properties, independent of their type. |
public interface | ReadOnlyProperty<
the type of the wrapped value T>Generic interface that defines the methods common to all readable properties independent of their type. |
Modifier and Type | Class and Description |
---|---|
public abstract class | BooleanProperty
This class provides a full implementation of a |
public abstract class | BooleanPropertyBase
The class |
public abstract class | DoubleProperty
This class defines a |
public abstract class | DoublePropertyBase
The class |
public abstract class | FloatProperty
This class defines a |
public abstract class | FloatPropertyBase
The class |
public abstract class | IntegerProperty
This class defines a |
public abstract class | IntegerPropertyBase
The class |
public abstract class | ListProperty<
the type of the E>List elementsThis class provides a full implementation of a |
public abstract class | ListPropertyBase<
the type of the E>List elementsThe class |
public abstract class | LongProperty
This class defines a |
public abstract class | LongPropertyBase
The class |
public abstract class | MapProperty<
the type of the key elements of the K, Map the type of the value elements of the V>Map This class provides a full implementation of a |
public abstract class | MapPropertyBase<
the type of the key elements of the K, Map the type of the value elements of the V>Map The class |
public abstract class | ObjectProperty<
the type of the wrapped T>Object This class provides a full implementation of a |
public abstract class | ObjectPropertyBase<
the type of the wrapped value T>The class |
public abstract class | ReadOnlyBooleanProperty
Superclass for all readonly properties wrapping a |
public abstract class | ReadOnlyBooleanPropertyBase
Base class for all readonly properties wrapping a |
public class | ReadOnlyBooleanWrapper
This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlyDoubleProperty
Superclass for all readonly properties wrapping a |
public abstract class | ReadOnlyDoublePropertyBase
Base class for all readonly properties wrapping a |
public class | ReadOnlyDoubleWrapper
This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlyFloatProperty
Superclass for all readonly properties wrapping a |
public abstract class | ReadOnlyFloatPropertyBase
Base class for all readonly properties wrapping a |
public class | ReadOnlyFloatWrapper
This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlyIntegerProperty
Superclass for all readonly properties wrapping an |
public abstract class | ReadOnlyIntegerPropertyBase
Base class for all readonly properties wrapping an |
public class | ReadOnlyIntegerWrapper
This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlyListProperty<
the type of the E>List elementsSuperclass for all readonly properties wrapping an |
public abstract class | ReadOnlyListPropertyBase<
the list element type E>Base class for all readonly properties wrapping an
|
public class | ReadOnlyListWrapper<
the list element type E>This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlyLongProperty
Superclass for all readonly properties wrapping a |
public abstract class | ReadOnlyLongPropertyBase
Base class for all readonly properties wrapping a |
public class | ReadOnlyLongWrapper
This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlyMapProperty<
the type of the key elements of the map K, the type of the value elements of the map V>Superclass for all readonly properties wrapping an |
public abstract class | ReadOnlyMapPropertyBase<
the map key type K, the map value type V>Base class for all readonly properties wrapping an |
public class | ReadOnlyMapWrapper<
the map key type K, the map value type V>This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlyObjectProperty<
the type of the wrapped T>Object Superclass for all readonly properties wrapping an arbitrary |
public abstract class | ReadOnlyObjectPropertyBase<
the type of the wrapped T>Object Base class for all readonly properties wrapping an arbitrary |
public class | ReadOnlyObjectWrapper<
the object type T>This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlySetProperty<
the type of the E>Set elementsSuperclass for all readonly properties wrapping an |
public abstract class | ReadOnlySetPropertyBase<
the type of the E>Set elementsBase class for all readonly properties wrapping an |
public class | ReadOnlySetWrapper<
the set element type E>This class provides a convenient class to define read-only properties. |
public abstract class | ReadOnlyStringProperty
Superclass for all readonly properties wrapping an |
public abstract class | ReadOnlyStringPropertyBase
Base class for all readonly properties wrapping a |
public class | ReadOnlyStringWrapper
This class provides a convenient class to define read-only properties. |
public abstract class | SetProperty<
the type of the E>Set elementsThis class provides a full implementation of a |
public abstract class | SetPropertyBase<
the type of the E>Set elementsThe class |
public class | SimpleBooleanProperty
This class provides a full implementation of a |
public class | SimpleDoubleProperty
This class provides a full implementation of a |
public class | SimpleFloatProperty
This class provides a full implementation of a |
public class | SimpleIntegerProperty
This class provides a full implementation of a |
public class | SimpleListProperty<
the type of the E>List elementsThis class provides a full implementation of a |
public class | SimpleLongProperty
This class provides a full implementation of a |
public class | SimpleMapProperty<
the type of the key elements of the K, Map the type of the value elements of the V>Map This class provides a full implementation of a |
public class | SimpleObjectProperty<
the type of the wrapped T>Object This class provides a full implementation of a |
public class | SimpleSetProperty<
the type of the E>Set elementsThis class provides a full implementation of a |
public class | SimpleStringProperty
This class provides a full implementation of a |
public abstract class | StringProperty
This class provides a full implementation of a |
public abstract class | StringPropertyBase
The class |