GP-4317 - Removing the 'reserved' concept

This commit is contained in:
dragonmacher 2024-02-17 11:21:31 -05:00
parent 52e6360d96
commit e44daf55aa
40 changed files with 1143 additions and 834 deletions

View file

@ -17,7 +17,8 @@
//@category Examples.Bundle
import docking.ActionContext;
import docking.action.*;
import docking.action.DockingAction;
import docking.action.ToolBarData;
import ghidra.app.script.GhidraScript;
import ghidra.app.services.CodeViewerService;
import ghidra.app.services.ConsoleService;
@ -40,7 +41,7 @@ public class ActivatorExampleScript extends GhidraScript {
println("The activator will remove the action if this bundle is deactivated,");
println(" e.g. if this script is modified and the bundle needs to be reloaded.");
DockingAction action = new DockingAction("Added by script!!", null, false) {
DockingAction action = new DockingAction("Added by script!!", null) {
@Override
public void actionPerformed(ActionContext context) {
ConsoleService console = tool.getService(ConsoleService.class);