我正在尝试从数据库中加载ObservableList of Appointment,并将其呈现到屏幕上。假设我已经有一个ObservableList,如何添加到议程中?
agenda.appointments().add(
new Agenda.AppointmentImpl()
.withSummary("hello")
.withWholeDay(true));
我首先尝试通过手动将约会添加到议程来开始简单的工作,但是它给了我NUllpointerException,并且没有在屏幕上呈现。