I have a JList and register a selection handler (ListSelectionListener). Now I need to now the previous selected item/index.

Up to now, I save the last selected item on my own. Is there a better way to do so? In other words: Is there are methode/best practice which I miss all the years?!

link|improve this question

2  
"I need to now the previous selected item/index." Why? – Andrew Thompson Feb 8 at 9:58
3  
"I save the last selected item on my own" - that's the way to go: it certainly has some meaning in the data domain, at the moment setting it there that domain has the knowlegde :-) – kleopatra Feb 8 at 10:04
@Andrew Thompson: Funny Question! The selected item has some fields, which are modifiable (other fileds in the dialog). If the user select a new item. The data should be stored into the last item. – Marcel Jaeschke Feb 8 at 15:22
sounds like extremely brittle binding somewhere, to the "selectedIndex/Value" ;-) – kleopatra Feb 9 at 9:45
Why? Do you have a better idea? – Marcel Jaeschke Feb 9 at 10:28
feedback

2 Answers

up vote 4 down vote accepted

One of my list is single-selection-only. like kleopatra says. The event data does not help here.

That is not what Kleopatra said. The event data does help. You just can't assume that the first index represents the selected row and the last index represents the previous row.

As Kleopatra suggested you need to do further checking. Something like:

public void valueChanged(ListSelectionEvent e)
{
    JList list = (JList)e.getSource();
    int selected = list.getSelectedIndex();
    int previous = selected == e.getFirstIndex() ? e.getLastIndex() : e.getFirstIndex();

    System.out.println();
    System.out.println("Selected:" + selected);
    System.out.println("Previous:" + previous);
}
link|improve this answer
Hmm looks a little bit awkward to me, but seems to be a suitable solution.(For Single-Selection-Mode) Nevertheless I think the Java Guys at Oracle should work on this. – Marcel Jaeschke Feb 8 at 22:08
feedback

You dont need to write your custom code to store the previous selected item in list. JList provide a ListSelectionListener which will do the work for you. Here is the way to get last selected item.

 customList.addListSelectionListener(new ListSelectionListener() {

        @Override
        public void valueChanged(ListSelectionEvent arg0) {
             // TODO Auto-generated method stub

                         //Previous Selected Item index will be obtained by arg0.getFirstIndex()
                       // Simlarly Currently Selected Item index will be obtained by this mehtod arg0.getLastIndex()



        }
    });
link|improve this answer
1  
that's not true - the first/last are the boundaries of the range where a change has happened. Only for single selection mode and a nice implementation of the model (aka: it keeps the notification range a small as possible) one of those is the old and the other the new selection - but you cant know which is which (not without further checking their selection status :) – kleopatra Feb 8 at 12:12
i think it will work fine in single selection model..because it will give the last element and current selected element – Prateek Sharma Feb 8 at 12:52
no, that's not the case (read the api doc and/or write and run a small example) – kleopatra Feb 8 at 13:44
i have already seen api docs and implemented a small program and there it's working fine... that's why i posted this code here – Prateek Sharma Feb 8 at 14:49
which part of "Returns the index of the first row whose selection may have changed. getFirstIndex()<= getLastIndex()" makes you think that firstIndex is not selected? – kleopatra Feb 8 at 15:06
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.