Test fixes

This commit is contained in:
dragonmacher 2023-05-11 17:10:45 -04:00
parent f546c8828c
commit 2f2a07c671
5 changed files with 35 additions and 8 deletions

View file

@ -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();
}