I have designed a Swing GUI with the help of Netbeans IDE and this GUI contains a JList.
Bydefault, it uses AbstractListModel to pass it as an argument in the JList contructor to create that JList.
I want to specify somewhere in the Netbeans to pass DefaultListModel as the model to be passed in that JList so that later I can retrieve it to make changes in the listModel.
How can I do that.