The ContainerList is missing the get- and setSelectedIndex() that the List has.
This makes it a bit less easy to use the ContainerList as a drop in
replacement.
All this RFE requires is simply adding the following to ContainerList:
public int getSelectedIndex() {
return getModel().getSelectedIndex();
}
public void setSelectedIndex(int index) {
getModel().setSelectedIndex(index);
}
I've done this myself, but would be nice to have by default.
What steps will reproduce the problem?
1.
2.
3.
What is the expected output? What do you see instead?
What version of the product are you using? On what operating system?
Please provide any additional information below.
Original issue reported on code.google.com by ch.hj...@gmail.com on 8 Aug 2012 at 6:04
Original issue reported on code.google.com by
ch.hj...@gmail.com
on 8 Aug 2012 at 6:04