Relates :
|
|
Relates :
|
|
Relates :
|
|
Relates :
|
The three classes javafx.util.converter.[Date|Time|DateTime]StringConverter are based on the legacy types Date and Calendar in java.util, as well as DateFormat in java.text. The new java.time API in Java 8 is intended as replacement for those older APIs. JavaFX controls such as DatePicker and the forthcoming Spinner are based on the new java.time API and would benefit from improved StringConverter classes. DatePicker currently has a default internal StringConverter<LocalDate> implementation with special logic to ensure symmetry between formatting and parsing. This code should be moved to a class in javafx.util.converter, together with corresponding API for LocalTime and LocalDateTime.
|