How to get last change item in JList?
If we change/select list items by mouse, we can get it by implementing MouseListener interface and in mouseClicked() method by calling JList..locationToIndex(MouseEvent.getPoint()) method.
But how to achieve this if change/ select JList items by keyboard?
for KeyListener there is no such method to change item Point.
Thanks in advance,
Vikas

