I dont understand how to delete the line of JList wich is pressed by delete-key. I know that it sounds like "write for me the code please" but.... it is) Because i dont know is it possible to determine the actual line and then make it answer to my actions.
I started to write something like that
list.addKeyListener(new KeyAdapter() {
public void keyReleased(KeyEvent e) {
if(KeyEvent.getKeyText(e.getKeyCode()).equals("Delete")) {
// removing
}
}
});
but how to proceed i have no idea
Assuming you are using a
DefaultListModel
and assuming you want to delete all the selected items, the code you need isotherwise:
DefaultListModel
you have to extend the JList class or (better) create your own implementation ofListModel
and create your own remove method...