mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-4317 - Removing the 'reserved' concept
This commit is contained in:
parent
52e6360d96
commit
e44daf55aa
40 changed files with 1143 additions and 834 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue