Making the MVC triangle

The controller or sub-controller sets its model and view, linking the two.

public PatientSearchController(FoboLauncherView mainView) { 
    setModel(new PatientSearchModel());         
    setView(mainView);     
}