-
Bug
-
Resolution: Fixed
-
P3
-
1.3.0
-
merlin
-
sparc
-
solaris_2.6
Name: aaC67449 Date: 09/08/99
The JTable.selectAll() method throws IllegalArgumentException when there are no columns or rows in the table.
See example.
javadoc says:"
public void selectAll()
Select all rows, columns, and cells in the table.
"
See example.
------------- example --------------
import javax.swing.table.TableColumn;
import javax.swing.JTable;
public class Test{
public static void main(String argv[]) {
JTable c = new JTable();
c.addColumn(new TableColumn());
c.selectAll();
System.out.println("Ok");
}
}
------------- output ---------------
Exception in thread "main" java.lang.IllegalArgumentException: Row index out of range
at javax.swing.JTable.boundRow(JTable.java:1162)
at javax.swing.JTable.setRowSelectionInterval(JTable.java:1183)
at javax.swing.JTable.selectAll(JTable.java:1148)
at Test.main(Test.java:9)
======================================================================