See: Description
Interface | Description |
---|---|
ReadableObjectProperty<V> | |
ReadableProperty<V> |
This is the interface for a generic property.
|
ReadableSetProperty<E> | |
WritableObjectProperty<V> | |
WritableProperty<V> |
This is the interface for a generic property.
|
Class | Description |
---|---|
AbstractContainerProperty<V> |
This is the abstract base implementation of
WritableProperty and ReadableContainerProperty . |
AbstractProperty<V> |
This is the implementation of
WritableProperty . |
AbstractRegularProperty<V> |
This is the abstract base implementation of a regular
WritableProperty . |
AbstractValueProperty<V> |
This is the implementation of
WritableProperty . |
BindingInvalidationListener |
This is an implementation of
InvalidationListener for
binding . |
ReadOnlyPropertyImpl<V> | Deprecated |
Property
a real property. This
already brings a lot of benefits especially for data-bindings, but writing Java beans manually based on such
properties
is causing even more boiler-plate code. Further
Property
still lacks a lot of build-in features such as generic value type support,
validation, read-only views, JSON mapping, etc.ReadableProperty
and
WritableProperty
as well as all the sub-interfaces and implementations to give
you full support for all your needs. It is based on and extends the JavaFx interfaces such as
Property
what makes it fully compatible so it can be used in JavaFx clients and many
other supporting places. Further, it adds all the missing features and comes with
Bean
support that saves you from all the boilerplate code to give you the perfect
world you need. Stop wasting your time and use your time to actually implement real value.Datatype
s as property just like
StringListProperty
or
DurationInSecondsProperty
.Copyright © 2001–2016 mmm-Team. All rights reserved.