The Controller is the object that holds the javafx controls (e.g. TextField). The Model (a structure op POJO's) holds the (persistent) data. The Controller must has a reference to the Model object.
The application is going to use JavaFX list to display a set of system processes that can be seen by the application process itself. The user can execute a command to start a new process from the Menu ...
So, I'm trying to kind of recreate the "Auto Filter" functionality in Excel in this JavaFX app I'm writing -- for each column, bind the column contents to a ComboBox/ChoiceBox (herein labelled as ...