365366367368369370371372373374375
if (this.isLoading != loading) { this.isLoading = loading; DatasetEditorTable editorTable = getEditorTable(); if (editorTable != null) { editorTable.setLoading(loading); editorTable.repaint(); } } }
477478479480481482483484485486487
if (editorTable != null && connectionHandler.getId().equals(connectionId)) { editorTable.updateBackground(!connectionHandler.isConnected()); if (connectionHandler.isConnected()) { loadData(STATUS_CHANGE_LOAD_INSTRUCTIONS); } else { editorTable.repaint(); } } } /**
531532533534535536537538539540541
} if (action == TransactionAction.DISCONNECT) { editorTable.stopCellEditing(); model.revertChanges(); editorTable.repaint(); } } } }