ILikeProgramming
ILikeProgramming

Reputation: 293

JFXtras Classes and their Objects Explained

Thank you all in advance.

PS.

I've been going over the JFTras API but there's not much explanation there. There isn't that much elsewhere on the internet either. I think the JFXtras framework could really grow; it seems really useful, especially the Agenda, plus it is just what I need for my project now.

Upvotes: 0

Views: 159

Answers (1)

Eugene Ryzhikov
Eugene Ryzhikov

Reputation: 17369

Short answers:

  • Agenda is a JavaFX calendar component
  • Agenda.Appointment, Agenda.AppointmentGroup are interfaces
  • Agenda.AppointmentGroupImpl, Agenda.AppointmentImpl are default implementations of previously mentioned interfaces
  • Agenda.AgendaSkin, Agenda.WeekSkin are implementations of JavaFX component skins

More info on architecture of JavaFX component can be found at http://www.guigarage.com/2012/11/custom-ui-controls-with-javafx-part-1/

Upvotes: 1

Related Questions