Merge remote-tracking branch 'origin/GP-4801_Dan_deprecateModelDbgConnectors--SQUASHED'

This commit is contained in:
Ryan Kurtz 2024-08-13 09:43:20 -04:00
commit 27cc23b699
243 changed files with 1449 additions and 854 deletions

View file

@ -4,9 +4,9 @@
* 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.
@ -41,10 +41,12 @@ import ghidra.util.datastruct.CollectionChangeListener;
@PluginInfo(
shortDescription = "Debugger objects manager",
description = "GUI to manage connections to external debuggers and trace recording",
description = """
GUI to manage connections to external debuggers and trace recording. \
Deprecated since 11.2 for removal in 11.3.""",
category = PluginCategoryNames.DEBUGGER,
packageName = DebuggerPluginPackage.NAME,
status = PluginStatus.RELEASED,
status = PluginStatus.DEPRECATED,
eventsConsumed = {
ProgramActivatedPluginEvent.class, // for default launch executable path
ProgramOpenedPluginEvent.class,

View file

@ -4,9 +4,9 @@
* 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.
@ -24,19 +24,20 @@ import ghidra.framework.plugintool.*;
import ghidra.framework.plugintool.annotation.AutoServiceConsumed;
import ghidra.framework.plugintool.util.PluginStatus;
@PluginInfo( //
shortDescription = "Debugger targets manager", //
description = "GUI to manage connections to external debuggers and trace recording", //
category = PluginCategoryNames.DEBUGGER, //
packageName = DebuggerPluginPackage.NAME, //
status = PluginStatus.RELEASED, //
@PluginInfo(
shortDescription = "Debugger targets manager",
description = """
GUI to manage connections to external debuggers and trace recording. \
Deprecated since 11.2 for removal in 11.3.""",
category = PluginCategoryNames.DEBUGGER,
packageName = DebuggerPluginPackage.NAME,
status = PluginStatus.DEPRECATED,
eventsConsumed = {
ModelActivatedPluginEvent.class, //
}, //
servicesRequired = { //
DebuggerModelService.class, //
} //
)
ModelActivatedPluginEvent.class,
},
servicesRequired = {
DebuggerModelService.class,
})
public class DebuggerTargetsPlugin extends AbstractDebuggerPlugin {
@AutoServiceConsumed
protected DebuggerModelService modelService;

View file

@ -4,9 +4,9 @@
* 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.
@ -75,10 +75,12 @@ import ghidra.util.task.TaskMonitor;
@PluginInfo(
shortDescription = "Debugger models manager service (proxy to front-end)",
description = "Manage debug sessions, connections, and trace recording",
description = """
Manage debug sessions, connections, and trace recording. \
Deprecated since 11.2 for removal in 11.3.""",
category = PluginCategoryNames.DEBUGGER,
packageName = DebuggerPluginPackage.NAME,
status = PluginStatus.RELEASED,
status = PluginStatus.DEPRECATED,
eventsConsumed = {
ProgramActivatedPluginEvent.class, ProgramClosedPluginEvent.class, },
servicesRequired = {