IJPL-250730 Platform API: remove 'internal' status from 'PushDownProcessor'

(cherry picked from commit 5d7e8da6d720c66b64086d385cb6c5757cdef152)

IJ-CR-214369

GitOrigin-RevId: 2ccbe7422b13b1378d6384a451595a57a92cff1b
This commit is contained in:
Nikolay Chashnikov
2026-07-21 12:15:28 +00:00
committed by intellij-monorepo-bot
parent ac8e7be012
commit 65b9e89dd4
3 changed files with 17 additions and 1 deletions
@@ -953,6 +953,9 @@ f:com.intellij.platform.ide.documentation.ActionsKt
*f:com.intellij.psi.impl.source.resolve.reference.PsiReferenceUtil
- s:findReferenceOfClass(com.intellij.psi.PsiReference,java.lang.Class):com.intellij.psi.PsiReference
- s:unwrapMultiReference(com.intellij.psi.PsiReference):java.util.List
c:com.intellij.refactoring.memberPushDown.PushDownProcessor
- com.intellij.refactoring.BaseRefactoringProcessor
- *:<init>(com.intellij.psi.PsiElement,java.util.List,com.intellij.refactoring.util.DocCommentPolicy,Z):V
*a:com.intellij.refactoring.rename.api.FileOperation
- *sf:Companion:com.intellij.refactoring.rename.api.FileOperation$Companion
- *sf:addFile(java.nio.file.Path,java.lang.CharSequence):com.intellij.refactoring.rename.api.FileOperation
+14
View File
@@ -5284,6 +5284,20 @@ a:com.intellij.refactoring.memberPullUp.PullUpDialogBase
- com.intellij.refactoring.ui.RefactoringDialog
- getSelectedMemberInfos():java.util.List
- getSuperClass():com.intellij.psi.PsiElement
c:com.intellij.refactoring.memberPushDown.PushDownProcessor
- com.intellij.refactoring.BaseRefactoringProcessor
- <init>(com.intellij.psi.PsiElement,java.util.List,com.intellij.refactoring.util.DocCommentPolicy):V
- p:createUsageViewDescriptor(com.intellij.usageView.UsageInfo[]):com.intellij.usageView.UsageViewDescriptor
- p:findUsages():com.intellij.usageView.UsageInfo[]
- p:getAfterData(com.intellij.usageView.UsageInfo[]):com.intellij.refactoring.listeners.RefactoringEventData
- p:getBeforeData():com.intellij.refactoring.listeners.RefactoringEventData
- p:getCommandName():java.lang.String
- p:getElementsToWrite(com.intellij.usageView.UsageViewDescriptor):java.util.Collection
- p:getRefactoringId():java.lang.String
- p:performRefactoring(com.intellij.usageView.UsageInfo[]):V
- p:preprocessUsages(com.intellij.openapi.util.Ref):Z
- pushDownToClasses(com.intellij.usageView.UsageInfo[]):V
- p:refreshElements(com.intellij.psi.PsiElement[]):V
com.intellij.refactoring.move.MoveCallback
- a:refactoringCompleted():V
f:com.intellij.refactoring.move.MoveHandler
@@ -28,7 +28,6 @@ import java.util.List;
import static com.intellij.openapi.util.NlsContexts.DialogMessage;
import static com.intellij.openapi.util.NlsContexts.DialogTitle;
@ApiStatus.Internal
public class PushDownProcessor<MemberInfo extends MemberInfoBase<Member>,
Member extends PsiElement,
Klass extends PsiElement> extends BaseRefactoringProcessor {