Index: src/main/java/common/javax/swing/plaf/basic/BasicTableUI.java =================================================================== --- src/main/java/common/javax/swing/plaf/basic/BasicTableUI.java (revision 504297) +++ src/main/java/common/javax/swing/plaf/basic/BasicTableUI.java (working copy) @@ -119,7 +119,7 @@ } public void mousePressed(final MouseEvent e) { - if (!table.isEnabled()) { + if (table == null || !table.isEnabled()) { return; } @@ -160,7 +160,7 @@ } public void mouseReleased(final MouseEvent e) { - if (!table.isEnabled()) { + if (table == null || !table.isEnabled()) { return; } @@ -176,7 +176,7 @@ } public void mouseDragged(final MouseEvent e) { - if (!table.isEnabled()) { + if (table == null || !table.isEnabled()) { return; }