OPENIDE #164 Show "Scratch File" in File menu when opened java class

(cherry picked from commit b1cc17c0d79761ac932788ed7349cebe5fa530c8)
This commit is contained in:
Nikita Iarychenko
2025-04-18 18:24:36 +04:00
parent 718055a480
commit 367c350721

View File

@@ -1,4 +1,7 @@
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. // Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
//
// Modified by Nikita Iarychenko at 2025 as part of the OpenIDE project(https://openide.ru).
// Any modifications are available on the same license terms as the original source code.
package com.intellij.ide.scratch; package com.intellij.ide.scratch;
import com.intellij.icons.AllIcons; import com.intellij.icons.AllIcons;
@@ -63,7 +66,7 @@ public final class ScratchFileActions {
return ourCurrentBuffer; return ourCurrentBuffer;
} }
static final class NewFileAction extends DumbAwareAction implements NewFileActionWithCategory { static final class NewFileAction extends DumbAwareAction {
private static final String ACTION_ID = "NewScratchFile"; private static final String ACTION_ID = "NewScratchFile";
private final NotNullLazyValue<@Nls String> myActionText = NotNullLazyValue.lazy(() -> { private final NotNullLazyValue<@Nls String> myActionText = NotNullLazyValue.lazy(() -> {
@@ -170,10 +173,10 @@ public final class ScratchFileActions {
} }
} }
@Override //@Override
public @NotNull String getCategory() { //public @NotNull String getCategory() {
return "Scratch"; // return "Scratch";
} //}
} }
static final class NewBufferAction extends DumbAwareAction { static final class NewBufferAction extends DumbAwareAction {