The GridBagLayout is a flexible Java Swing layout manager that aligns components vertically, horizontally or along their baseline without requiring that the components be of the same size.
I am using a GridBagLayout to (currently) display two rows. I am aware this layout is overkill for this task, …
java swing user-interface gridbaglayout