I'm attempting to change the elements of a Combobox that was created through a GUI form.
It generates:
private JComboBox<String> example;
But if I try and do:
example = new JComboBox<>(...);
, nothing occurs. It simply shows the GUI as I set it on the form with no modification.
How am I to modify components while using IntelliJ's GUI form, then?