How to delete items selected in a JList?
Ahoy,
I hava made a Multiple selection list (two list: one for
the items that might be selected and another one
for the selected items). How can I delete the (faultly) selected items in the second list?
Thanx,
// create function button
copy = new JButton( ">>" );
delete = new JButton ( "<<");
copy.addActionListener(
new ActionListener() {
public void actionPerformed( ActionEvent e )
{
// place selected values in functionList
copyList.setListData(
functionList.getSelectedValues() );
}
}
);
delete.addActionListener(
new ActionListener() {
public void actionPerformed( ActionEvent e )
{
// delete selected items from copyList
?
}
}
);

