-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
5.0
-
x86
-
windows_xp
A DESCRIPTION OF THE REQUEST :
The DefaultComboBoxModel has a constructor that will accept an array or a vector to populate the model with data.
The DefaultListModel does not. Instead the JList itself has the constructor which accepts an array or a Vector.
For consistancy, shouldn't DefaultComboBoxModel and DefaultListModel both accept an array or a Vector in the constructor?
Also, both models would benefit from an addAll(Collection<? extends E> c) method which will all the contents of a Collection without having to iterate through the collection one element at a time.
JUSTIFICATION :
For consistancy
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The JList constructor should not accept a Vector to populate the list, the DefaultListModel should.
ACTUAL -
The JList constructor currently accepts a Vector.
---------- BEGIN SOURCE ----------
DefaultListModel model = new DefaultListModel();
for(int i=0;i<v.size();i++) {
model.addElement(v.elementAt(i));
}
JList jList = new JList(model);
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
same as above.
The DefaultComboBoxModel has a constructor that will accept an array or a vector to populate the model with data.
The DefaultListModel does not. Instead the JList itself has the constructor which accepts an array or a Vector.
For consistancy, shouldn't DefaultComboBoxModel and DefaultListModel both accept an array or a Vector in the constructor?
Also, both models would benefit from an addAll(Collection<? extends E> c) method which will all the contents of a Collection without having to iterate through the collection one element at a time.
JUSTIFICATION :
For consistancy
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The JList constructor should not accept a Vector to populate the list, the DefaultListModel should.
ACTUAL -
The JList constructor currently accepts a Vector.
---------- BEGIN SOURCE ----------
DefaultListModel model = new DefaultListModel();
for(int i=0;i<v.size();i++) {
model.addElement(v.elementAt(i));
}
JList jList = new JList(model);
---------- END SOURCE ----------
CUSTOMER SUBMITTED WORKAROUND :
same as above.
- relates to
-
JDK-4304287 Swing components should require the use of Collections and not Vectors
-
- Open
-