/**
* A read-only property used for retrieving the end time of the entry. The
* property gets updated whenever the end time inside the entry interval
* changes (see {@link #intervalProperty()}).
*
* @return the end time of the entry
*/
public final ReadOnlyObjectProperty<LocalTime> endTimeProperty() {
if (endTime == null) {
endTime = new ReadOnlyObjectWrapper<>(this, "endTime", getInterval().getEndTime()); //$NON-NLS-1$
}
return endTime.getReadOnlyProperty();
}
Entry.java 文件源码
java
阅读 43
收藏 0
点赞 0
评论 0
项目:CalendarFX
作者:
评论列表
文章目录