mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Test fixes
This commit is contained in:
parent
f546c8828c
commit
2f2a07c671
5 changed files with 35 additions and 8 deletions
|
@ -15,6 +15,7 @@
|
|||
*/
|
||||
package ghidra.service.graph;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Set;
|
||||
|
||||
import docking.action.DockingActionIf;
|
||||
|
@ -147,4 +148,11 @@ public interface GraphDisplay {
|
|||
* @param action the action to add
|
||||
*/
|
||||
public void addAction(DockingActionIf action);
|
||||
|
||||
/**
|
||||
* Gets all actions that have been added to this graph display. If this display does not
|
||||
* support actions, then an empty collection will be returned.
|
||||
* @return the actions
|
||||
*/
|
||||
public Collection<DockingActionIf> getActions();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue