How can I make an array of image icons? When I click a JButton
on a different class, the ImageIcon
s should be set to a JLabel
.
ImageIcon[] array
and when clicking the button: label.setIcon(array[i])
in the actionPerformed
method of the corresponding ActionListener
.