Overridden for efficiency reasons (provides a better calculation of the dirty region). See this page for a more complete discussion.
(TableModelEvent e)
| 937 | * for a more complete discussion. |
| 938 | */ |
| 939 | @Override |
| 940 | public void tableChanged(TableModelEvent e) { |
| 941 | //if just an update, and not a data or structure changed event or an insert or delete, use the fixed row update handling |
| 942 | //otherwise call super.tableChanged to let the standard JTable update handling manage it |
| 943 | if ( e != null && |
| 944 | e.getType() == TableModelEvent.UPDATE && |
| 945 | e.getFirstRow() != TableModelEvent.HEADER_ROW && |
| 946 | e.getLastRow() != Integer.MAX_VALUE) { |
| 947 | handleRowUpdate(e); |
| 948 | } else { |
| 949 | super.tableChanged(e); |
| 950 | } |
| 951 | } |
| 952 | |
| 953 | /** |
| 954 | * This borrows most of the logic from the superclass handling of update |
nothing calls this directly
no test coverage detected