I am rewriting a multi-user MS Access App. (split Front-end/Back-end). I am becoming comfortable with Java and JavaFX but the Class vs Module approach is puzzling me from a design point of view;
MS Access Front-end opens with a Switchboard with 20 buttons. Each button closes the switchboard and opens a specific purpose form, and when they are finished back to the Main form - back and forward forms. It works well.
How to approach coding this using classes?
- Should I use a separate class for each stage which seems obvious to me? and
- is there best-practice method that determines whether one should swap between Stages or Scenes..? All 'forms' currently contain distinctly different content.
Some expert advice might save me a heap of effort and give me some confidence. ..so nice to leave Access and VBA behind.