public void actionPerformed(AnActionEvent e) {
DatasetEditor datasetEditor = getDatasetEditor(e);
if (datasetEditor != null) {
DataEditorSettings settings = DataEditorSettings.getInstance(datasetEditor.getProject());
datasetEditor.fetchNextRecords(settings.getGeneralSettings().getFetchBlockSize().value());
}
}
public void update(AnActionEvent e) {
Presentation presentation = e.getPresentation();