Reputation: 1267
When I call JList<String>.getModel()
and cast it to DefaultListModel<String>
it gives me this exception.
Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: javax.swing.JList$4 cannot be cast to javax.swing.DefaultListModel
The code that throws it:
private JList<String> list = new JList<String>();
((DefaultListModel<String>) list.getModel()).addElement(...);
It doesn't do it every time though. Most of the time it works perfectly, but other times it throws this exception. I don't understand why this is happening. Is there anything I can do to stop this from happening?
Upvotes: 8
Views: 16985
Reputation: 6544
If you are using NetBeans
new DefaultListModel ()
Upvotes: 10
Reputation: 87
Before JList<String>.getModel(),
you must initialize your object JList<String>.setModel(new DefaultModelList())
Upvotes: 1
Reputation: 50588
I experienced this issue. I found this simple workaround:
//----instantiation----
JList mList = new JList();
mList.setModel(new DefaultListModel());
/*---- do whatever you want---- */
//Retain it wherever you want with
DefaultListModel model = (DefaultListModel)mList.getModel();
Upvotes: 16
Reputation: 7054
You should not assume it is a DefaultListModel. Use the interface ListModel. The JList is returning an internal implementation of ListModel.
If you need access to the underlying model you should create it, set it in the JList constructor and retain it yourself.
Upvotes: 6