mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
Merge branch 'GT-3485_ghidravore_action_context'
Conflicts: Ghidra/Framework/Docking/src/main/java/docking/action/builder/AbstractActionBuilder.java
This commit is contained in:
commit
5dc7df71b3
33 changed files with 128 additions and 289 deletions
|
@ -34,6 +34,7 @@ import docking.util.image.ToolIconURL;
|
|||
import ghidra.framework.model.*;
|
||||
import ghidra.framework.options.ToolOptions;
|
||||
import ghidra.framework.plugintool.PluginEvent;
|
||||
import ghidra.framework.plugintool.util.ServiceListener;
|
||||
import ghidra.program.model.listing.Program;
|
||||
|
||||
public class DummyTool implements Tool {
|
||||
|
@ -369,11 +370,6 @@ public class DummyTool implements Tool {
|
|||
//do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public ActionContext getGlobalContext() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setStatusInfo(String text) {
|
||||
//do nothing
|
||||
|
@ -423,4 +419,19 @@ public class DummyTool implements Tool {
|
|||
public DockingToolActions getToolActions() {
|
||||
return toolActions;
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> T getService(Class<T> serviceClass) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addServiceListener(ServiceListener listener) {
|
||||
//do nothing
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeServiceListener(ServiceListener listener) {
|
||||
//do nothing
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue