jfxtras ライブラリで JavaFx を使用しています。"Agenda" コントロールを fxml に含めたところ、ページに正しくレンダリングされました。残念ながら、関連付けられた予定はテーブルに表示されず、関連付けられたイベントもありません。サンプルの同じ動作を実現するにはどうすればよいですか? このコントロールに関するチュートリアルはどこにありますか? ここにJavaコード:
LocalDate lTodayLocalDate = LocalDate.now();
Agenda.Appointment[] lTestAppointments = new Agenda.Appointment[]{
new Agenda.AppointmentImpl()
.withStartTime(new GregorianCalendar(lTodayLocalDate.getYear(), lTodayLocalDate.getMonthValue(), lTodayLocalDate.getDayOfMonth(), 4, 00))
.withEndTime(new GregorianCalendar(lTodayLocalDate.getYear(), lTodayLocalDate.getMonthValue(), lTodayLocalDate.getDayOfMonth(), 5, 30))
.withSummary("A")
.withDescription("A much longer test description")
.withAppointmentGroup(lAppointmentGroupMap.get("group07"))
};
agenda.appointments().addAll(lTestAppointments);