}
@NotNull
public FileEditor createEditor(@NotNull Project project, @NotNull VirtualFile file) {
SQLConsoleEditor editor = new SQLConsoleEditor(project, (SQLConsoleFile) file, "SQL Console");
SQLConsoleEditorToolbarForm toolbarForm = new SQLConsoleEditorToolbarForm(editor);
editor.getComponent().add(toolbarForm.getComponent(), BorderLayout.NORTH);
return editor;
}