Reputation: 27628
I want to make my JList
editable, what should I do?
Upvotes: 1
Views: 9120
Reputation: 5300
You can find the source code for an editable list here:
http://www.java2s.com/Code/Java/Swing-Components/EditableListExample.htm
Depending on your use case an JComboBox
, which is editable, might be a better solution than a JList
.
Upvotes: 1