jidefx.scene.control.field.popup.LocalDatePopupContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jidefx-fields Show documentation
Show all versions of jidefx-fields Show documentation
JideFX Common Layer is a collection of several extend feature for JavaFX
The newest version!
/*
* @(#)LocalDatePopupContent.java 5/19/2013
*
* Copyright 2002 - 2013 JIDE Software Inc. All rights reserved.
*/
package jidefx.scene.control.field.popup;
import java.time.LocalDate;
/**
* A PopupContent for LocalDateTime.
*/
public class LocalDatePopupContent extends AbstractDatePopupContent {
@Override
public LocalDate fromLocalDate(LocalDate localDate) {
return localDate;
}
@Override
public LocalDate toLocalDate(LocalDate value) {
return value;
}
}