What I do, in NetBeans for example:
- create a UI component class, suffixed with Swing component type, e.g. JPanel, e.g. MyUIWidgetJPanel
- create a logic/behaviour class to handle the behaviour/logic, i.e. what happens when the UI component is used, e.g. buttons within it pressed etc., MyUIWidgetLogic
I may also link components/logic together using references, if the behaviour/outcome of one component influences/impacts another, e.g. some options displayed are no longer relevant, or to give context sensitive options.
What do you think of this? Good? Bad?
What do you do?