How can I make a gui layout in java which is column based? by that i mean:
JLabel
JTextField
JLabel
JTextField
JLabel
JTextField
I want them all stacked on to of each other, rather than side by side. In the past I've used FlowLayout which isn't suitable, and gridLayout which makes each component much larger than I require. Any ideas?