IJPL-797 intellij.platform.debugger.impl review internal API - wip 2

GitOrigin-RevId: ac9582f745267a9a95931a30bd603f01d205b673
This commit is contained in:
Egor Ushakov
2024-06-19 16:19:16 +02:00
committed by intellij-monorepo-bot
parent 98a593703b
commit 064fc600ff
4 changed files with 4 additions and 53 deletions

View File

@@ -96,39 +96,6 @@ a:com.intellij.xdebugger.attach.osHandlers.UnixAttachOSHandler
- getUid():I
- p:getenv(java.lang.String):java.lang.String
- isOurProcess(I):Z
*a:com.intellij.xdebugger.impl.CustomComponentEvaluator
- com.intellij.xdebugger.frame.XFullValueEvaluator
- <init>(java.lang.String):V
- createComponent(java.lang.String):javax.swing.JComponent
- show(java.awt.event.MouseEvent,com.intellij.openapi.project.Project,com.intellij.openapi.editor.Editor):V
- p:showValuePopup(java.awt.event.MouseEvent,com.intellij.openapi.project.Project,com.intellij.openapi.editor.Editor,javax.swing.JComponent,java.lang.Runnable):V
*pf:com.intellij.xdebugger.impl.CustomComponentEvaluator$EvaluationCallback
- com.intellij.xdebugger.frame.XFullValueEvaluator$XFullValueEvaluationCallback
- <init>(javax.swing.JComponent,com.intellij.xdebugger.impl.CustomComponentEvaluator,com.intellij.openapi.project.Project):V
- errorOccurred(java.lang.String):V
- evaluated(java.lang.String):V
- evaluated(java.lang.String,java.awt.Font):V
- isObsolete():Z
- f:setObsolete():V
f:com.intellij.xdebugger.impl.BreakpointManagerState
- com.intellij.openapi.components.BaseState
- <init>():V
- f:getBreakpoints():java.util.List
- f:getBreakpointsDefaults():java.util.List
- f:getBreakpointsDialogProperties():com.intellij.xdebugger.impl.breakpoints.XBreakpointsDialogState
- f:getDefaultBreakpoints():java.util.List
- f:getDefaultGroup():java.lang.String
- f:setBreakpointsDialogProperties(com.intellij.xdebugger.impl.breakpoints.XBreakpointsDialogState):V
- f:setDefaultGroup(java.lang.String):V
f:com.intellij.xdebugger.impl.ConfigurationState
- com.intellij.openapi.components.BaseState
- <init>():V
- <init>(java.lang.String):V
- <init>(java.lang.String,java.util.List):V
- b:<init>(java.lang.String,java.util.List,I,kotlin.jvm.internal.DefaultConstructorMarker):V
- f:getExpressionStates():java.util.List
- f:getName():java.lang.String
- f:setName(java.lang.String):V
a:com.intellij.xdebugger.impl.DebuggerSupport
- psf:DISABLED_EDIT:com.intellij.xdebugger.impl.actions.EditBreakpointActionHandler
- psf:DISABLED_MARK_HANDLER:com.intellij.xdebugger.impl.actions.MarkObjectActionHandler
@@ -330,7 +297,6 @@ f:com.intellij.xdebugger.impl.XDebuggerManagerImpl
- getDebugProcesses(java.lang.Class):java.util.List
- getDebugSession(com.intellij.execution.ui.ExecutionConsole):com.intellij.xdebugger.XDebugSession
- getDebugSessions():com.intellij.xdebugger.XDebugSession[]
- getExecutionPointManager():com.intellij.xdebugger.impl.XDebuggerExecutionPointManager
- s:getNotificationGroup():com.intellij.notification.NotificationGroup
- getPinToTopManager():com.intellij.xdebugger.impl.pinned.items.XDebuggerPinToTopManager
- getProject():com.intellij.openapi.project.Project
@@ -1411,7 +1377,6 @@ c:com.intellij.xdebugger.impl.breakpoints.ui.tree.BreakpointsCheckboxTree
- p:installSpeedSearch():V
- p:nodeStateWillChange(com.intellij.ui.CheckedTreeNode):V
- p:onNodeStateChanged(com.intellij.ui.CheckedTreeNode):V
- setDelegate(com.intellij.xdebugger.impl.breakpoints.ui.tree.BreakpointsCheckboxTree$Delegate):V
c:com.intellij.xdebugger.impl.breakpoints.ui.tree.BreakpointsGroupNode
- com.intellij.ui.CheckedTreeNode
- getGroup():com.intellij.xdebugger.breakpoints.ui.XBreakpointGroup

View File

@@ -1,6 +1,4 @@
com/intellij/xdebugger/impl/XDebuggerExecutionPointManager
com/intellij/xdebugger/impl/XDebuggerState
com/intellij/xdebugger/impl/breakpoints/ui/tree/BreakpointsCheckboxTree$Delegate
com/intellij/xdebugger/impl/ui/EmbeddedComboBoxUI
com/intellij/xdebugger/memory/component/InstancesTracker$MyState
com/intellij/xdebugger/memory/utils/AbstractTableModelWithColumns$TableColumnDescriptor

View File

@@ -65,6 +65,7 @@ import com.intellij.xdebugger.ui.DebuggerColors;
import kotlin.Unit;
import kotlinx.coroutines.CoroutineScope;
import one.util.streamex.StreamEx;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.Nls;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@@ -224,6 +225,7 @@ public final class XDebuggerManagerImpl extends XDebuggerManager implements Pers
return myPinToTopManager;
}
@ApiStatus.Internal
public @NotNull XDebuggerExecutionPointManager getExecutionPointManager() {
return myExecutionPointManager;
}

View File

@@ -1,18 +1,4 @@
/*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.xdebugger.impl.breakpoints.ui.tree;
import com.intellij.openapi.project.Project;
@@ -46,7 +32,7 @@ public class BreakpointsCheckboxTree extends CheckboxTree {
void nodeStateWillChange(CheckedTreeNode node);
}
public void setDelegate(Delegate delegate) {
void setDelegate(Delegate delegate) {
myDelegate = delegate;
}