I'm creating a GUI in Java using the GridBagLayout
. Is there any way for me to create a component group so that I can pass the reference to the group and have access to all of them?
I've considered creating a panel and grouping the components that way, but I was wondering if there was another way that makes use of the complexity of the GridBagLayout
.
Thanks so much!