Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4269720

JTable.selectAll() throws IAException when there are no columns or rows.

XMLWordPrintable

    • 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)


      ======================================================================

            pmilnesunw Philip Milne (Inactive)
            alisunw Ali Ali (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: