I've found that this works:
final StyleableBooleanProperty prop =
(StyleableBooleanProperty)focusTraversableProperty();
But I don't know if that will work in every case.
On 4/28/14, 5:33 PM, Tom Schindl wrote:
Hi,
I've been cleaning up the warnings inside the controls code base and one
of the warnings left (beside many generic problems in the *View-classes)
is the casting from *Property to *StyleableProperty.
final StyleableProperty<Boolean> prop =
(StyleableProperty<Boolean>)focusTraversableProperty();
now I think I found a way to get away with out an unchecked cast warning
by writing
final StyleableProperty<Boolean> prop =
(StyleableProperty<Boolean>)(WritableValue<Boolean>)focusTraversableProperty();
Anyone having a better idea?
Tom