Skip to main content

Model-View-Controller-Interactor

JavaFX: Quick Guide to MVCI

20 mins

Introduction - Why Use a Framework?
#

Frameworks are all about organizing your application so that it will be easy to maintain, enhance and expand over time.

Multi-MVCI Projects

24 mins

Projects With Multiple Screens and Functions
#

One of the questions that seems to come up fairly often is about how to create a project that is composed of a number of different screens and functions.

Implementing MVC in JavaFX

14 mins

Model-View-Controller is generally accepted as a good way to structure an application with a user interface. While JavaFX contains all of the classes needed to implement MVC in a natural and seamless way, it doesn’t seem to be widely documented and there’s little evidence on the Web that many people have figured out how to do it properly. The fact that JavaFX supports Reactive programming makes a big difference to how you should implement MVC.