I’m trying to do as the title says.
I’ve got an efficient way for posting several of the same swing objects to a frame by storing them in an array and adding them using a for loop like so:
JLabel[] contrllabels= new JLabel[8];
contrllabels[0] = new JLabel("SCF Type: ");
contrllabels[1] = new JLabel("Units: ");
contrllabels[2] = new JLabel("Spherical Harmonics: ");
contrllabels[3] = new JLabel("Molecular Charge: ");
contrllabels[4] = new JLabel("PP: ");
contrllabels[5] = new JLabel("DFT Type: ");
contrllabels[6] = new JLabel("Max Iterations: ");
contrllabels[7] = new JLabel("Mult: ");
for(int i = 0;i<contrllabels.length;i++){
c.gridy = i;
frame.add(contrllabels[i],c);
}
But what if there are several swing objects of different types? I’ve got several combo boxes and textfields which I’d like to be added to the frame in a similar manner. I use gridbaglayout so if I don’t use a for loop, I end up with lots of unnecessary code due to giving the constraints new values every time I want a different object added.
Is there such thing as an array of references which point to these different objects which I can then iterate through to add to the frame? Something like
JTextField tf = new JTextField(5);
JComboBox cb = new JComboBox("example");
Swing[] array = {tf,cb}
for(int i = 0;i<array.length;i++){
c.gridy = i;
frame.add(array[i],c);
}
I know such an array doesn’t exist, but is there some way of implementing such a thing? It would greatly reduce the number of lines in my code and make it less confusing.
Thank you
You could use an array or collection of a common super type such as an array or ArrayList of JComponent. I’m curious if you’re using a parallel array of GridBagConstraints to go with each component that is being added — ugh. I often use arrays of components but usually if they are like components such as JLabel/JTextField pairs or a cluster of JRadioButtons.
As an aside, for my money, I try to avoid GridBagLayout as much as possible and instead nest containers that use the more coder-friendly layouts.
For instance this small GUI was made with a combination of FlowLayout, BoxLayout, BorderLayout and GridLayout:
The large JPanel that holds the whole GUI uses BorderLayout, The JTextArea in the center is placed BorderLayout.CENTER, the Provider JLabel and JTextField at the top are in a FlowLayout JPanel that is placed overall BorderLayout.NORTH, the bottom buttons are in a JPanel that uses GridLayout(1, 0, 5, 0) which is held in another JPanel that uses FlowLayout which is placed in the GUI BorderLayout.SOUTH, and the stuff on the right are in a BoxLayout using JPanel.
For example: