Hey everyone I am trying to add checkboxes into JList but for some reasons it's giving me IllegalArgumentException
. If anyone know how to add checkbox in JList please tell me. Thank you in advance
JCheckBox []data={
new JCheckBox("C"),
new JCheckBox("C++"),
new JCheckBox("Java"),
new JCheckBox("C sharp")};
JList l=new JList(data);
JScrollPane sp=new JScrollPane(l,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED,ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);